BingAI Anywhere - Use BingChat Anywhere

BingAI Anywhere - Use BingChat Anywhere

Effortlessly search BingAI/BingChat on any site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "version": "1.0.1",
  "action": {
    "default_popup": "src/browser_action/browser_action.html",
    "default_icon": "icons/128.png"
  },
  "description": "__MSG_extDescription__",
  "permissions": [
    "storage",
    "contextMenus",
    "webRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "omnibox": {
    "keyword": "Bing"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bing.com/*"
      ],
      "js": [
        "js/contentScript.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/script.js"
      ],
      "css": [
        "css/style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/search_popup/popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "https://*.bing.com/*"
  ]
}