AI Plus

AI Plus

Adds many features and gives options to the new Bing AI chatbot & Microsoft Copilot (ChatGPT v4).

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "AI Plus",
  "description": "Adds many features and provides options for Microsoft Copilot / Bing AI (ChatGPT v4).",
  "version": "3.2.1",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bing.com/*",
        "https://copilot.microsoft.com/*"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{b9c0f318-e7db-4b30-b6ef-9698e5c5a07c}"
    }
  }
}