WacGPT

WacGPT

WacGPT is a free browser extension that empowers you with the capabilities of AI. With a simple selection of text on web pages, it provides you with services like concept explanations, content summarization, high-quality translations, AI-based Q&A, and more. By relieving you of repetitive and mundane tasks, it unleashes your creativity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_AppName__",
  "description": "__MSG_AppDesc__",
  "version": "1.0.3",
  "manifest_version": 3,
  "default_locale": "zh_CN",
  "permissions": [
    "tabs",
    "cookies",
    "background",
    "storage",
    "webNavigation",
    "<all_urls>"
  ],
  "action": {
    "default_popup": "./popup/popup.html",
    "default_icon": "./icons/logo.png",
    "content_security_policy": "script-src 'self' 'sha256-abc123'; object-src 'self'"
  },
  "icons": {
    "500": "./icons/logo.png"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "./content_scripts/wac.js"
      ],
      "css": [
        "./css/v2.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css/*",
        "icons/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "options_page": "./options/options.html",
  "host_permissions": [
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}