Examine source code of Total Adblock

Inspect and view changes in Total Adblock 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_name__",
  "version": "1.0.3",
  "description": "__MSG_description__",
  "default_locale": "en",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "webRequest",
    "declarativeNetRequest",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "128": "/assets/128_enabled.png"
  },
  "action": {
    "default_icon": {},
    "default_title": "__MSG_name__",
    "default_popup": "./html/popup.html"
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "all_frames": false,
      "js": [
        "./js/app.js"
      ],
      "run_at": "document_idle",
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "./js/bg.js"
  }
}