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 |
官方網址 | 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" } } } |