Adblock Unlimited - ad blocker

Adblock Unlimited - ad blocker

Effectively ablock tool on all websites in Chrome. Block ads and popup, banners, pre-roll. Perfect adblocker for remove Youtube ads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "version": "1.0.4",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "storage"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "blockLIST",
        "enabled": true,
        "path": "./helpers/my.json"
      },
      {
        "id": "advLIST",
        "enabled": false,
        "path": "./helpers/adv.json"
      },
      {
        "id": "antiprnLIST",
        "enabled": false,
        "path": "./helpers/antiprn.json"
      },
      {
        "id": "suspLIST",
        "enabled": false,
        "path": "./helpers/susp.json"
      }
    ]
  },
  "icons": {
    "48": "assets/icons/48.png",
    "64": "assets/icons/64.png"
  },
  "content_scripts": [
    {
      "js": [
        "./scripts/yt_blocks.js",
        "./scripts/content.js"
      ],
      "run_at": "document_end",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Adblock Unlimited"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "./scripts/worker.js"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "manifest_version": 3
}