Hide YouTube TV Button

Hide YouTube TV Button

Hide 'Play on TV' button on YouTube video player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hide YouTube TV Button",
  "description": "Hide 'Play on TV' button on YouTube video player.",
  "version": "0.1",
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon.png",
    "48": "images/icon.png",
    "128": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "tv-button.css"
      ]
    }
  ]
}