Examine source code of UseChatGPT.AI: ChatGPT AI Copilot for the Web

Inspect and view changes in UseChatGPT.AI: ChatGPT AI Copilot for the Web source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "0.0.23",
  "description": "__MSG_desc__",
  "short_name": "__MSG_sn__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "import-content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://app.usechatgpt.ai/*"
      ],
      "css": [
        "inject.css"
      ],
      "js": [
        "arrive.min.js",
        "import-check_status.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.usechatgpt.ai/*"
      ],
      "css": [
        "inject.css"
      ],
      "js": [
        "arrive.min.js",
        "usechatgpt.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "inject.css"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "js": [
        "import-iframe.js",
        "chunks/content-gpt.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "pages/options/index.html",
    "open_in_tab": true
  },
  "permissions": [
    "tabs",
    "scripting",
    "storage",
    "management",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "action": {
    "default_icon": {
      "16": "assets/USE_CHAT_GPT_AI/icons/usechatGPT_16_normal.png",
      "24": "assets/USE_CHAT_GPT_AI/icons/usechatGPT_32_normal.png",
      "32": "assets/USE_CHAT_GPT_AI/icons/usechatGPT_32_normal.png"
    },
    "default_title": "UseChatGPT.AI",
    "default_popup": "pages/popup/index.html"
  },
  "icons": {
    "16": "assets/USE_CHAT_GPT_AI/icons/usechatGPT_16_normal.png",
    "32": "assets/USE_CHAT_GPT_AI/icons/usechatGPT_32_normal.png",
    "48": "assets/USE_CHAT_GPT_AI/icons/usechatGPT_48_normal.png",
    "128": "assets/USE_CHAT_GPT_AI/icons/usechatGPT_128_normal.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+J",
        "windows": "Alt+J",
        "linux": "Alt+J",
        "mac": "Command+J"
      },
      "description": "Active UseChatGPT.AI"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "content.js",
        "check_status.js",
        "iframe.js",
        "chunks/content.js",
        "arrive.min.js",
        "pages/pdf/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}