Automagic: auto-reload script for ChatGPT

Automagic: auto-reload script for ChatGPT

Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Automagic: auto-reload script for ChatGPT",
  "short_name": "Automagic auto-reload",
  "version": "1.1",
  "description": "Automagic is an auto-reloader for ChatGPT that auto-reloads ChatGPT whenever it is at capacity.",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "background"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/auth/login/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "bk.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.js",
        "*.html",
        "*.css",
        "*.png",
        "*.svg",
        "*.jpg",
        "*.jpeg",
        ".mp3"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true
    }
  ],
  "offline_enabled": true,
  "author": "Automagic",
  "content_security_policy": {
    "extension_pages": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'",
    "content_scripts": "font-src 'self'; script-src 'self'; object-src 'self'; worker-src 'self'"
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "Automagic: auto-reloader for ChatGPT"
  }
}