AdBlocker for youtube

AdBlocker for youtube

Block all ads on youtube. Youtube Adblocker removes all ads - pre-roll video ads, text and banner ads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "32.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "enabled": true,
        "id": "ruleset_1",
        "path": "rules_1.json"
      }
    ]
  },
  "description": "Block all ads on youtube. Youtube Adblocker removes all ads - pre-roll video ads, text and banner ads",
  "icons": {
    "16": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "manifest_version": 3,
  "name": "AdBlocker for youtube",
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "storage"
  ],
  "version": "1.0.7"
}