AskChatGPT

AskChatGPT

Use ChatGPT as you browse the web. Get useful info about the pages you're viewing. Think of it as your personal browser assistant

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AskChatGPT",
  "description": "Use ChatGPT as you browse the web. Get useful info about the pages you're viewing. Think of it as your personal browser assistant",
  "version": "1.0",
  "manifest_version": 3,
  "author": "[email protected]",
  "action": {
    "default_popup": "/views/popup.html"
  },
  "background": {
    "service_worker": "/scripts/background.js"
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/scripts/content.js"
      ]
    }
  ],
  "icons": {
    "16": "/assets/icons/icon16.png",
    "32": "/assets/icons/icon32.png",
    "48": "/assets/icons/icon48.png",
    "128": "/assets/icons/icon128.png"
  }
}