remove YouTube TV button
removes 'play on TV' button on YouTube
Cos'è remove YouTube TV button?
remove YouTube TV button è un'estensione di Chrome sviluppata da Sveagruva, e la sua funzione principale è "removes 'play on TV' button on YouTube".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione remove YouTube TV button
Scarica i file di estensione remove YouTube TV button in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
'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.
Informazioni di Base sull'Estensione
Nome | remove YouTube TV button |
ID | lcblinegofgihklfnclgedlfcolbacpl |
URL Ufficiale | https://chromewebstore.google.com/detail/remove-youtube-tv-button/lcblinegofgihklfnclgedlfcolbacpl |
Descrizione | removes 'play on TV' button on YouTube |
Dimensione del File | 27.89 KB |
Conteggio Installazioni | 3,748 |
Versione Corrente | 0.1.3 |
Ultimo Aggiornamento | 2022-11-09 |
Data di Pubblicazione | 2020-12-15 |
Valutazione | 4.91/5 Totale 56 Valutazioni |
Sviluppatore | Sveagruva |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/sveagruva/remove_youtube_tv_button |
Lingue Supportate | 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" } } } |