Remove Youtube Hotkeys
Turn Off Youtube Hotkeys
Cos'è Remove Youtube Hotkeys?
Remove Youtube Hotkeys è un'estensione di Chrome sviluppata da Brent Waters, e la sua funzione principale è "Turn Off Youtube Hotkeys".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Remove Youtube Hotkeys
Scarica i file di estensione Remove Youtube Hotkeys 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
This chrome extension disables youtube hotkeys whenever you are on youtube.com
Informazioni di Base sull'Estensione
Nome | Remove Youtube Hotkeys |
ID | ajabfhplebocnmdcejfleginmigkhjdj |
URL Ufficiale | https://chromewebstore.google.com/detail/remove-youtube-hotkeys/ajabfhplebocnmdcejfleginmigkhjdj |
Descrizione | Turn Off Youtube Hotkeys |
Dimensione del File | 24.26 KB |
Conteggio Installazioni | 1,187 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2019-03-15 |
Data di Pubblicazione | 2019-03-15 |
Valutazione | 3.19/5 Totale 27 Valutazioni |
Sviluppatore | Brent Waters |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/bcwaters/TurnOffYoutubeHotkeys |
URL della Pagina di Aiuto | https://github.com/bcwaters/TurnOffYoutubeHotkeys |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove Youtube Hotkeys", "version": "1.0", "description": "Turn Off Youtube Hotkeys", "browser_action": [], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "\/background.js" ] }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "tabs", "activeTab", "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "\/chromeContent.js" ] } ] } |