Gasby - A better, fancy ChatGPT UI

Gasby - A better, fancy ChatGPT UI

Get custom ChatGPT-like AI assistant anywhere from your browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Gasby - A better, fancy ChatGPT UI",
  "version": "1.6",
  "description": "Get custom ChatGPT-like AI assistant anywhere from your browser",
  "icons": {
    "16": "icons/icon_16x16.png",
    "32": "icons/icon_32x32.png",
    "128": "icons/icon_128x128.png",
    "256": "icons/icon_256x256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "icons/icon_16x16.png",
      "32": "icons/icon_32x32.png",
      "128": "icons/icon_128x128.png",
      "256": "icons/icon_256x256.png"
    }
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://api.openai.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}