Microsoft Bing Search for Chrome

Microsoft Bing Search for Chrome

Set Microsoft Bing as your default search provider

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": "./assets/Logo_48.png"
  },
  "background": {
    "service_worker": "./scripts/rootServiceWorker.js"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "favicon_url": "https://www.bing.com/favicon.ico",
      "is_default": true,
      "prepopulated_id": 3,
      "search_url": "https://www.bing.com/search?EID=MBSC&form=BGGCMF&pc=__PARAM__BG02&q={searchTerms}",
      "suggest_url": "https://www.bing.com/osjson.aspx?form=BGGCSS&pc=__PARAM__BG02&query={searchTerms}"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "default_locale": "en",
  "description": "__MSG_ExtnDescription__",
  "externally_connectable": {
    "matches": [
      "https://www.bing.com/*",
      "https://browserdefaults.microsoft.com/*"
    ]
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "icons": {
    "16": "./assets/Logo.png",
    "48": "./assets/Logo_48.png",
    "128": "./assets/Logo_128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_ExtnName__",
  "permissions": [
    "alarms",
    "contextMenus",
    "cookies",
    "declarativeNetRequest",
    "notifications",
    "scripting",
    "storage",
    "tabs"
  ],
  "short_name": "__MSG_ExtnName__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0.18"
}