Examine source code of Adblocker for Web

Inspect and view changes in Adblocker for Web 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",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "0.1.8",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "16": "icons/logo-16.png",
    "32": "icons/logo-32.png",
    "48": "icons/logo-48.png",
    "64": "icons/logo-64.png",
    "128": "icons/logo-128.png"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "Adblocker"
  },
  "content_scripts": [
    {
      "js": [
        "./js/yt_blocks.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "options_page": "html/options.html",
  "devtools_page": "html/devtools.html",
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "blockLIST",
        "enabled": true,
        "path": "./rules/block.json"
      }
    ]
  },
  "background": {
    "service_worker": "./js/background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "declarativeNetRequest",
    "webRequest"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ]
}