Tab GPT

Tab GPT

An extension powered by Open AI to analyze & perform actions based on your active tab's content, enhancing browsing experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tab GPT",
  "version": "1.0.0",
  "description": "An extension powered by Open AI to analyze & perform actions based on your active tab's content, enhancing browsing experience.",
  "icons": {
    "16": "logo-16x16.png",
    "32": "logo-32x32.png",
    "48": "logo-48x48.png",
    "128": "logo-128x128.png"
  },
  "author": "[email protected]",
  "action": {
    "default_popup": "src/popup/index.html"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [],
      "use_dynamic_url": false
    }
  ]
}