Search Ads remover for bing

Search Ads remover for bing

Remove Search Ads of bing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Search Ads remover for bing",
  "version": "1.0",
  "description": "Remove Search Ads of bing.",
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "tabs",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.bing.com/*"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}