GPT-EW: ChatGPT EveryWhere

GPT-EW: ChatGPT EveryWhere

Integrate ChatGPT AI with any site for smarter browsing and instant assistance with GPT-EW

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "GPT-EW: ChatGPT EveryWhere",
  "version": "1.11",
  "description": "Integrate ChatGPT AI with any site for smarter browsing and instant assistance with GPT-EW",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  },
  "browser_action": {},
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "library/prism/prism.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "images/*",
    "styles.css"
  ]
}