Adblock for Youtube

Adblock for Youtube

Removes ads from Youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "version": "3.1.6",
  "default_locale": "en",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Adblock for Youtube",
    "default_popup": "pages/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/shared/export.js",
        "scripts/shared/lookup.js",
        "scripts/shared/proactive.js",
        "scripts/command.js",
        "scripts/contentscript.js",
        "scripts/uni.js",
        "scripts/listing.js",
        "scripts/fonts.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "scripts/shared/export.js",
      "scripts/shared/merged.js",
      "scripts/shared/json.js",
      "scripts/view.js",
      "scripts/uni.js",
      "scripts/wrapper.js",
      "scripts/style.js",
      "scripts/background.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'",
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}