Examine source code of Adblock for YouTube™

Inspect and view changes in Adblock for YouTube™ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
}