Web Adblocker

Web Adblocker

Block annoying ads with our free adblocker extension. Say goodbye to pop-ups, banners, and more for a seamless browsing experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "default_locale": "en",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "manifest_version": 3,
  "version": "1.0.1",
  "background": {
    "service_worker": "background/background.js"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon64.png",
    "128": "icon128.png"
  },
  "action": {
    "default_popup": "index.html",
    "default_title": "Web AdBlocker",
    "default_icon": "icon128.png"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset1",
        "enabled": true,
        "path": "rules.json"
      },
      {
        "id": "ruleset2",
        "enabled": true,
        "path": "rules2.json"
      }
    ]
  },
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "declarativeNetRequest",
    "notifications"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}