Examine source code of Adblock Master

Inspect and view changes in Adblock Master 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",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "version": "2.2.4",
  "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",
    "webRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/xmlhttp.js",
        "lib/jquery-3.6.0.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "use_dynamic_url": true
    }
  ]
}