Adblock for YouTube™

Adblock for YouTube™

Remove all ads from YouTube. Block ads and pop-unders on YouTube videos and remove all other types of ads. Make YouTube work faster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.0",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "./js/background.js"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/skip-ad.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}