Examine source code of AdZero Adblocker

Inspect and view changes in AdZero Adblocker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "AdZero ad blocker",
  "short_name": "AdZero",
  "version": "24.1017.5242.4",
  "manifest_version": 3,
  "description": "",
  "icons": {
    "16": "images/logo/16.png",
    "32": "images/logo/32.png",
    "48": "images/logo/64.png",
    "128": "images/logo/128.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://*.adzero.org/*",
    "https://*.youtube.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.adzero.org/app/extn-instl-success"
      ],
      "js": [
        "post_install_script.bundle.js"
      ]
    },
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "ytcs.bundle.js"
      ]
    }
  ],
  "background": {
    "type": "module",
    "scripts": [
      "service_worker.bundle.js"
    ]
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "adzero",
        "enabled": false,
        "path": "rulesets/adzero.json"
      },
      {
        "id": "noop",
        "enabled": true,
        "path": "rulesets/noop.json"
      }
    ]
  },
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "tabs",
    "cookies",
    "scripting",
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "ytis.bundle.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{90c2ce49-24fd-4246-87cb-b64744c6c32f}"
    }
  }
}