Examine source code of AdBlock - Ads and Youtube

Inspect and view changes in AdBlock - Ads and Youtube 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "enabled": true,
        "id": "2",
        "path": "headers.json"
      },
      {
        "enabled": true,
        "id": "1",
        "path": "rules.json"
      }
    ]
  },
  "description": "Blasting fast and light AdBlock with Youtube ads skipper",
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 3,
  "name": "AdBlock - Ads and Youtube",
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest",
    "scripting"
  ],
  "version": "1.0.6"
}