Super Adblocker

Super Adblocker

Super Adblocker - blocks ads and pop-ups and banners in Chrome on all sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Super Adblocker"
  },
  "background": {
    "service_worker": "./javascript/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "./block/yt_blocks.js",
        "./block/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "enabled": false,
        "id": "advLIST",
        "path": "./res/__1.json"
      },
      {
        "enabled": true,
        "id": "blockLIST",
        "path": "./res/__2.json"
      },
      {
        "enabled": false,
        "id": "antiprnLIST",
        "path": "./res/__3.json"
      },
      {
        "enabled": false,
        "id": "suspLIST",
        "path": "./res/__4.json"
      }
    ]
  },
  "name": "Super Adblocker",
  "description": "Super Adblocker - blocks ads and pop-ups and banners in Chrome on all sites",
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "icons": {
    "48": "./icons/48.png",
    "64": "./icons/64.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "storage"
  ],
  "manifest_version": 3,
  "version": "1.0.2"
}