Adblock for Youtube - ad blocker tool

Adblock for Youtube - ad blocker tool

Adblock - block any ads on Youtube videos. Adblock removes all types of ads. Ad blocker for Chrome

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "icons/icon128.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "enabled": true,
        "id": "ruleset_1",
        "path": "rules_1.json"
      }
    ]
  },
  "description": "__MSG_desc__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "short_name": "__MSG_name__",
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "storage"
  ],
  "version": "1.4.0"
}