GPT Browser Extension

GPT Browser Extension

Adding a chat box to access OpenAI's GPT AI's from a browser extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "GPT Browser Extension",
  "description": "Adding a chat box to access ChatGPT from a browser extension",
  "version": "1.2.0",
  "icons": {
    "256": "icons/icon256.png"
  },
  "action": {
    "browser_style": true,
    "default_icon": {
      "256": "icons/icon256.png"
    },
    "default_title": "GPT Extension!",
    "default_popup": "index.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "notifications"
  ]
}