GPT Everywhere

GPT Everywhere

Use ChatGPT on the whole internet.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GPT Everywhere",
  "description": "Use ChatGPT on the whole internet.",
  "version": "1.3.1",
  "action": {
    "default_popup": "gpt.html",
    "default_icon": "./img/logo-32x32.png"
  },
  "permissions": [
    "clipboardWrite",
    "clipboardRead",
    "storage",
    "activeTab",
    "scripting"
  ],
  "icons": {
    "16": "./img/logo-16x16.png",
    "32": "./img/logo-32x32.png",
    "192": "./img/logo-192x192.png"
  },
  "host_permissions": [
    "https://api.openai.com/"
  ],
  "options_page": "options.html",
  "commands": {
    "gptShowPrompt": {
      "suggested_key": {
        "windows": "Ctrl+Period",
        "mac": "Command+Period",
        "chromeos": "Ctrl+Period",
        "linux": "Ctrl+Period"
      },
      "description": "Run GPT on the current page."
    }
  },
  "background": {
    "service_worker": "background.js"
  }
}