Adblock Pro for Youtube™

Adblock Pro for Youtube™

Removes ads from Youtube™.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "3.0.3",
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "scripts": [
      "js/bg.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_popup": "pages/popup.html",
    "default_title": "Adblock Pro for Youtube™"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/contentscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ]
}