Ad-Defender YouTube™ By Extra Thinkers

Ad-Defender YouTube™ By Extra Thinkers

Play any YouTube™ Video without annoying Ads('Skip and Play').

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "lib/chrome/background.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "data/content_script/inject.css"
      ],
      "js": [
        "data/message_passing.js",
        "data/content_script/inject.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Play any YouTube™ Video without annoying Ads('Skip and Play').",
  "homepage_url": "http://www.extrathinkers.com/youtube-ad-defender.html",
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  },
  "manifest_version": 2,
  "name": "Ad-Defender YouTube™ By Extra Thinkers",
  "options_ui": {
    "chrome_style": true,
    "page": "data/options/options.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "webRequest",
    "http://*/*",
    "https://*/*",
    "webRequestBlocking"
  ],
  "short_name": "Ad-Defender YouTube™",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.1",
  "web_accessible_resources": [
    "data/content_script/*"
  ]
}