Urban YouTube™ Ad Blocker

Get the ultimate YouTube™ adblocker powered by Urban-VPN team!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Urban YouTubeâ„¢ Ad Blocker",
  "version": "1.1.0",
  "description": "Get the ultimate YouTubeâ„¢ adblocker powered by Urban-VPN team!",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "bg/build.js",
      "bg/ad-blocker.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://youtube.com/*"
      ],
      "js": [
        "content/ad-blocker.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}