Web ChatGPT.ai

Web ChatGPT.ai

Introducing Web ChatGPT.ai, the free and highly customizable Chrome extension that makes browsing and researching a breeze! With…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web ChatGPT.ai",
  "version": "1.0.0",
  "permissions": [
    "contextMenus",
    "scripting"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_origin_as_fallback": true,
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "overlay.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "TRC20_USDT.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}