Viaplay Keyboard Shortcuts
Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This…
Cos'è Viaplay Keyboard Shortcuts?
Viaplay Keyboard Shortcuts è un'estensione di Chrome sviluppata da mouiylus, e la sua funzione principale è "Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Viaplay Keyboard Shortcuts
Scarica i file di estensione Viaplay Keyboard 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
Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This extension adds multiple features including: - M to mute/unmute. - F to toggle fullscreen. - S to skip intro/recap (where applicable). - N to quickstart next episode (available when the "Next episode" button appears. - UP/DOWN arrow-keys to increase/decrease volume. - T press to cycle through subtitles, hold to toggle ON/OFF Please contact support if you run into any issues. Changes from v1.5.5 - Fixed a bug where the search function would not work Changes from v1.5.4 - Working again since Viaplay update Changes from v1.5.3 - Size reduced from ~69kb to ~17kb Changes from v1.5.2 - Update manifest Changes from v1.5.1 - Add support for Netherlands - Fix audio keys
Informazioni di Base sull'Estensione
Nome | Viaplay Keyboard Shortcuts |
ID | dgnkgalpolbfilhhdejcbbapehkbjdkl |
URL Ufficiale | https://chromewebstore.google.com/detail/viaplay-keyboard-shortcut/dgnkgalpolbfilhhdejcbbapehkbjdkl |
Descrizione | Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This… |
Dimensione del File | 19.86 KB |
Conteggio Installazioni | 58 |
Versione Corrente | 1.5.6 |
Ultimo Aggiornamento | 2023-03-20 |
Data di Pubblicazione | 2021-12-03 |
Sviluppatore | mouiylus |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/AminoffZ/viaplay-keyboard-shortcuts |
URL della Pagina di Aiuto | https://github.com/AminoffZ/viaplay-keyboard-shortcuts |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Viaplay Keyboard Shortcuts", "version": "1.5.6", "web_accessible_resources": [ { "resources": [ "script.js" ], "matches": [ "https:\/\/*.viaplay.fi\/*", "https:\/\/*.viaplay.se\/*", "https:\/\/*.viaplay.no\/*", "https:\/\/*.viaplay.dk\/*", "https:\/\/*.viaplay.is\/*", "https:\/\/*.viaplay.ee\/*", "https:\/\/*.viaplay.lv\/*", "https:\/\/*.viaplay.lt\/*", "https:\/\/*.viaplay.pl\/*", "https:\/\/*.viaplay.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/*.viaplay.fi\/*", "https:\/\/*.viaplay.se\/*", "https:\/\/*.viaplay.no\/*", "https:\/\/*.viaplay.dk\/*", "https:\/\/*.viaplay.is\/*", "https:\/\/*.viaplay.ee\/*", "https:\/\/*.viaplay.lv\/*", "https:\/\/*.viaplay.lt\/*", "https:\/\/*.viaplay.pl\/*", "https:\/\/*.viaplay.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_icon": ".\/images\/icon.png" } } |