Examine source code of AdGone Ad Blocker

Inspect and view changes in AdGone Ad Blocker 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": "AdGone Ad Blocker",
  "version": "2.0.4",
  "description": "Ad blocker",
  "icons": {
    "48": "icons/icon_active_48.png",
    "128": "icons/icon_active_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "AdGone Ad Blocker",
    "default_popup": "popups/popup.html"
  },
  "declarative_net_request": {
    "rule_resources": []
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "tabs",
    "storage",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "contextMenus",
    "unlimitedStorage",
    "cookies",
    "alarms",
    "notifications",
    "idle"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle",
      "js": [
        "/contentScript.js"
      ]
    }
  ]
}