AdBlock Pro - stop invasive ads

AdBlock Pro - stop invasive ads

We stop annoying ads, popups, trackers on popular sites and skip youtube ads.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "res/serviceworker.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "res/contentscript.js"
      ],
      "match_about_blank": true,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.1.12",
  "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'"
  }
}