Netflix Shortcuts
Custom shortcuts for Netflix
Cos'è Netflix Shortcuts?
Netflix Shortcuts è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Custom shortcuts for Netflix".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Netflix Shortcuts
Scarica i file di estensione Netflix Shortcuts 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 extension allows you to control Netflix using only your keyboard, no more mouse needed. It currently supports: - "Skip Intro" (hit the "s" key) - "Next Episode" (hit the "n" key). More coming soon...
Informazioni di Base sull'Estensione
Nome | |
ID | pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
URL Ufficiale | https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp |
Descrizione | Custom shortcuts for Netflix |
Dimensione del File | 6.79 KB |
Conteggio Installazioni | 246 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-10-06 |
Data di Pubblicazione | 2018-10-06 |
Valutazione | 1.00/5 Totale 1 Valutazioni |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/foxou33/netflix-shortcuts |
URL della Pagina di Aiuto | https://github.com/foxou33/netflix-shortcuts/issues |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Shortcuts", "version": "1.0", "manifest_version": 2, "description": "Custom shortcuts for Netflix", "icons": { "64": "img\/icon_grey.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/watch\/*" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": "img\/icon_red.png" }, "permissions": [ "declarativeContent" ] } |