Examine source code of YT Video Ad Blocker

Inspect and view changes in YT Video Ad Blocker 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
{
  "manifest_version": 2,
  "name": "YT AdBlocker",
  "short_name": "YT AdBlocker",
  "description": "Automatically block YouTube ads. Block all ads, or only the ones which annoy you. See which companies are targeting you and why.",
  "version": "1.2.2",
  "author": "Studio4",
  "browser_action": {
    "default_title": "YT AdBlocker",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "./static/logo/16.png",
      "32": "./static/logo/32.png",
      "48": "./static/logo/48.png",
      "128": "./static/logo/128.png"
    },
    "browser_style": true
  },
  "icons": {
    "16": "./static/logo/16.png",
    "32": "./static/logo/32.png",
    "48": "./static/logo/48.png",
    "128": "./static/logo/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background-script.js"
    ],
    "persistent": true
  },
  "web_accessible_resources": [
    "base.js"
  ],
  "permissions": [
    "storage",
    "*://*.youtube.com/*"
  ],
  "optional_permissions": [
    "downloads"
  ],
  "content_security_policy": "default-src 'self'; connect-src 'self' https://ytadblocker.com data:; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://fonts.gstatic.com; font-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com; img-src 'self' data: https://3u3oh.rdtk.io;",
  "browser_specific_settings": {
    "gecko": {
      "id": "yt-ad-blocker@yt-ad-blocker",
      "strict_min_version": "57.0"
    }
  }
}