remove YouTube TV button
removes 'play on TV' button on YouTube
What is remove YouTube TV button?
remove YouTube TV button is a Chrome extension developed by Sveagruva, and its main feature is "removes 'play on TV' button on YouTube".
Extension Screenshots
Download remove YouTube TV button Extension CRX File
Download remove YouTube TV button extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
'play on TV' button is annoying element of YouTube and also is kind of dangerous. You no longer need to worry about accidentally pressing that button because it doesn't exist anymore after installing this extension. ============== 0.1.3 update fixes 'play on TV' button for youtube redesign clicking no longer disables extension. if you see green checkmark it will perform same action as it did in 0.1.2.
Extension Basic Information
Name | remove YouTube TV button |
ID | lcblinegofgihklfnclgedlfcolbacpl |
Official URL | https://chromewebstore.google.com/detail/remove-youtube-tv-button/lcblinegofgihklfnclgedlfcolbacpl |
Description | removes 'play on TV' button on YouTube |
File Size | 27.89 KB |
Installation Count | 3,748 |
Current Version | 0.1.3 |
Last Updated | 2022-11-09 |
Publish Date | 2020-12-15 |
Rating | 4.91/5 Total 56 Ratings |
Developer | Sveagruva |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sveagruva/remove_youtube_tv_button |
Supported Languages | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.3", "name": "__MSG_name__", "description": "__MSG_app_description__", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "main.js" ], "css": [ "style.css" ], "run_at": "document_end", "all_frames": true } ], "icons": { "16": "icons\/16_disabled.png", "48": "icons\/48_disabled.png", "128": "icons\/128_disabled.png" }, "permissions": [ "storage" ], "background": { "scripts": [ "background.js" ] }, "default_locale": "en", "homepage_url": "https:\/\/github.com\/sveagruva\/remove_youtube_tv_button", "browser_action": { "default_icon": { "16": "icons\/16_disabled.png", "48": "icons\/48_disabled.png", "128": "icons\/128_disabled.png" } } } |