YouTube for TV Without Adware

YouTube for TV Without Adware

Allows youtube.com/tv to load from non-mobile browsers (and without adware)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube for TV Without Adware",
  "short_name": "youtube-for-tv-without-adware",
  "description": "Allows youtube.com/tv to load from non-mobile browsers (and without adware)",
  "version": "1.2",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": "icons/48.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "*://*.youtube.com/tv*",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}