ChatGPT

ChatGPT

Welcome to ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "manifest_version": 3,
  "options_page": "html/options.html",
  "host_permissions": [
    "https://*.openai.com/"
  ],
  "permissions": [
    "storage",
    "cookies",
    "activeTab"
  ],
  "background": {
    "service_worker": "js/background.bundle.js"
  },
  "action": {
    "default_title": "ChatGPT Plus",
    "default_popup": "html/popup.html",
    "default_icon": "img/icon.png"
  },
  "icons": {
    "16": "img/icon.png",
    "32": "img/icon.png",
    "48": "img/icon.png",
    "128": "img/icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/webcomponents-bundle.js",
        "js/contentScript.bundle.js"
      ],
      "css": [
        "css/fonts.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/icon.png",
        "img/logo.svg",
        "img/openai.svg",
        "css/fonts.css",
        "Quicksand-Medium.ttf",
        "Quicksand-SemiBold.ttf",
        "Quicksand-Bold.ttf",
        "html/options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}