ChatGPT everywhere

ChatGPT everywhere

Get ChatGPT responses on web pages! Extended conversations in popular search engines. Elevate your browsing experience with GPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_description__",
  "version": "1.0.4",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "favicon",
    "tabs",
    "alarms"
  ],
  "host_permissions": [
    "*://*.google.com/",
    "*://*.yahoo.com/",
    "*://*.bing.com/",
    "*://duckduckgo.com/",
    "*://chat.openai.com/"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*",
        "*.svg",
        "*.png",
        "*.css",
        "*.otf",
        "chrome://favicon/*",
        "options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}