remove YouTube TV button
removes 'play on TV' button on YouTube
什么是remove YouTube TV button?
remove YouTube TV button是由Sveagruva开发的Chrome扩展程序,该扩展的主要功能是“removes 'play on TV' button on YouTube”。
扩展截图
下载remove YouTube TV button扩展crx文件
下载remove YouTube TV button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
'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.
扩展基本信息
名称 | remove YouTube TV button |
ID | lcblinegofgihklfnclgedlfcolbacpl |
官方URL | https://chromewebstore.google.com/detail/remove-youtube-tv-button/lcblinegofgihklfnclgedlfcolbacpl |
简介 | removes 'play on TV' button on YouTube |
文件大小 | 27.89 KB |
安装次数 | 3,748 |
当前版本 | 0.1.3 |
更新时间 | 2022-11-09 |
上架时间 | 2020-12-15 |
评分 | 4.91/5 共56次评分 |
开发者 | Sveagruva |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sveagruva/remove_youtube_tv_button |
支持的语言 | 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" } } } |