ChatGPT everywhere

ChatGPT everywhere

Adds chat-gpt functionality to any textbox on the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT everywhere",
  "short_name": "ChatGPT everywhere",
  "description": "Adds chat-gpt functionality to any textbox on the web.",
  "homepage_url": "https://github.com/marcelpanse/chatgpt-everywhere",
  "version": "0.1.0",
  "version_name": "0.1.0",
  "manifest_version": 3,
  "default_locale": "en",
  "minimum_chrome_version": "88",
  "permissions": [
    "activeTab",
    "contextMenus",
    "background",
    "storage"
  ],
  "icons": {
    "128": "assets/img/128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://api.openai.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "selection.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "16": "assets/img/16x16.png",
      "24": "assets/img/24x24.png",
      "32": "assets/img/32x32.png"
    },
    "default_title": "GPT everywhere",
    "default_popup": "popup.html"
  }
}