AdBlock Master

AdBlock Master

We remove popups, ads and trackers on the most popular content sites and auto skip youtube ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "res/sw.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "res/cs.js"
      ],
      "match_about_blank": true,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.1.10",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "permissions": [
    "tabs",
    "storage",
    "scripting",
    "declarativeNetRequest",
    "declarativeNetRequestWithHostAccess",
    "unlimitedStorage"
  ],
  "icons": {
    "128": "128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "web-accessible-resources/*",
        "close.html",
        "128.png"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}