Chat GPT

Chat GPT

Supercharge Your Browser with the ChatGPT Powered Browser Extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "1.7.1",
  "description": "__MSG_extShortDesc__",
  "default_locale": "en",
  "icons": {
    "16": "images/16.png",
    "19": "images/19.png",
    "32": "images/32.png",
    "38": "images/38.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/16.png",
      "19": "images/19.png",
      "32": "images/32.png",
      "38": "images/38.png",
      "48": "images/48.png",
      "64": "images/64.png",
      "128": "images/128.png"
    },
    "default_popup": "bluePopup.html",
    "default_title": "__MSG_extName__"
  },
  "background": {
    "service_worker": "blueBackground.js"
  },
  "content_scripts": [
    {
      "css": [
        "blueContentScript.css"
      ],
      "js": [
        "blueContentScript.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}