BrowserGPT

BrowserGPT

Generate text using ChatGPT wherever you type in the browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BrowserGPT",
  "version": "1.1",
  "description": "Generate text using ChatGPT wherever you type in the browser",
  "permissions": [
    "https://api.openai.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "ailogo.png",
      "48": "ailogo.png",
      "128": "ailogo.png"
    }
  },
  "background": {
    "service_worker": "background.bundle.js"
  },
  "icons": {
    "16": "ailogo.png",
    "48": "ailogo.png",
    "128": "ailogo.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "static/js/App.bundle.js"
      ]
    }
  ]
}