Examine source code of YouTube™ AdBlocker

Inspect and view changes in YouTube™ AdBlocker 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
{
  "version": "1.1.2",
  "manifest_version": 2,
  "name": "YouTubeâ„¢ AdBlocker",
  "short_name": "youtube-adblocker",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "description": "The extension automatically removes all annoying ads and banners from the YouTube website.",
  "homepage_url": "https://network-iplus.eu/",
  "permissions": [
    "storage",
    "webRequest",
    "http://*/*",
    "https://*/*",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "content/content.js"
      ]
    },
    {
      "js": [
        "content/content_yt.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "64": "icons/64.png",
    "128": "icons/128.png",
    "512": "icons/512.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}