Ad Blocker for YouTube

Ad Blocker for YouTube

Watch YouTube without any ads!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ad Blocker for YouTube",
  "version": "1.0.6",
  "description": "Watch YouTube without any ads!",
  "author": "Peter Pi",
  "icons": {
    "128": "icon_128.png"
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}