Adblock Master

Adblock Master

Removes any Ads from your browser. Precise sniping for ads of various AD unions, and some video ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "version": "2.2.0",
  "background": {
    "service_worker": "/js/serviceWorker.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "64": "icons/icon.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_extension_name__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "lib/jquery-3.6.0.js",
        "lib/arrive.min.js",
        "js/inject.js",
        "js/xmlhttpInject.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "64": "icons/icon.png"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/xmlhttp.js",
        "lib/jquery-3.6.0.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}