Examine source code of YouTube™ Block Ads

Inspect and view changes in YouTube™ Block Ads 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": "2.0.2",
  "manifest_version": 2,
  "name": "YouTubeâ„¢ Block Ads",
  "short_name": "youtube-block-ads",
  "background": {
    "scripts": [
      "script/background.js"
    ]
  },
  "description": "The extension automatically blocks ads from Youtube. Block all ads, banners, preroll ads.",
  "permissions": [
    "storage",
    "webRequest",
    "http://*/*",
    "https://*/*",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "script/content.css"
      ],
      "js": [
        "script/content.js"
      ]
    },
    {
      "js": [
        "script/content2.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "64": "icons/secure2.png",
    "128": "icons/secure1.png",
    "512": "icons/secure.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}