DoubleJump
Jump forwards and backwards in videos by double-tapping.
Cos'è DoubleJump?
DoubleJump è un'estensione di Chrome sviluppata da Shrugal, e la sua funzione principale è "Jump forwards and backwards in videos by double-tapping.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione DoubleJump
Scarica i file di estensione DoubleJump 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
Use double tap to control videos: - Left side: Jump backwards 10s - Right side: Jump forwards 10s - Middle area: Toggle fullscreen (just like normal) Only available in YouTube for now.
Informazioni di Base sull'Estensione
Nome | |
ID | ngfckfoeiocjpajinnkiabbkoponfmkk |
URL Ufficiale | https://chrome.google.com/webstore/detail/doublejump/ngfckfoeiocjpajinnkiabbkoponfmkk |
Descrizione | Jump forwards and backwards in videos by double-tapping. |
Dimensione del File | 39.97 KB |
Conteggio Installazioni | 23 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2019-09-21 |
Data di Pubblicazione | 2019-09-21 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Shrugal |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://gitlab.com/shrugal/doublejump |
URL della Pagina di Aiuto | https://gitlab.com/shrugal/doublejump/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DoubleJump", "version": "1.1", "description": "Jump forwards and backwards in videos by double-tapping.", "manifest_version": 2, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "reload.js" ] } } |