Viaplay Keyboard Shortcuts
Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This…
Hvad er Viaplay Keyboard Shortcuts?
Viaplay Keyboard Shortcuts er en Chrome-udvidelse udviklet af mouiylus, og dens hovedfunktion er "Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This…".
Udvidelsesskærmbilleder
Download Viaplay Keyboard Shortcuts-udvidelses-CRX-fil
Download Viaplay Keyboard Shortcuts-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Viaplay Keyboard Shortcuts |
ID | dgnkgalpolbfilhhdejcbbapehkbjdkl |
Officiel URL | https://chromewebstore.google.com/detail/viaplay-keyboard-shortcut/dgnkgalpolbfilhhdejcbbapehkbjdkl |
Beskrivelse | Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This… |
Filstørrelse | 19.86 KB |
Antal Installationer | 58 |
Nuværende Version | 1.5.6 |
Senest Opdateret | 2023-03-20 |
Udgivelsesdato | 2021-12-03 |
Udvikler | mouiylus |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/AminoffZ/viaplay-keyboard-shortcuts |
Hjælpeside-URL | https://github.com/AminoffZ/viaplay-keyboard-shortcuts |
Understøttede Sprog | 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" } } |