YouTube™ AdBlocker

YouTube™ AdBlocker

Hide annoying ads on youtube and other popular video services

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "6.0.0",
  "background": {
    "scripts": [
      "adguard/adguard-api.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon-small-red.png",
    "default_popup": "popup.html",
    "default_title": "YouTube™ AdBlocker "
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "adguard/adguard-content.js",
        "js/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "description": "__MSG_desc__",
  "icons": {
    "48": "images/icon-small-red.png",
    "128": "images/icon-big-red.png"
  },
  "manifest_version": 2,
  "name": "YouTube™ AdBlocker",
  "permissions": [
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "http://*/*",
    "https://*/*",
    "ws://*/*",
    "wss://*/*",
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "default_locale": "en_US"
}