Viaplay Keyboard Shortcuts
Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This…
Viaplay Keyboard Shortcuts क्या है?
Viaplay Keyboard Shortcuts mouiylus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Viaplay Keyboard Shortcuts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | dgnkgalpolbfilhhdejcbbapehkbjdkl |
| आधिकारिक URL | https://chromewebstore.google.com/detail/viaplay-keyboard-shortcut/dgnkgalpolbfilhhdejcbbapehkbjdkl |
| विवरण | Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This… |
| फ़ाइल का आकार | 19.86 KB |
| स्थापना संख्या | 58 |
| वर्तमान संस्करण | 1.5.6 |
| अंतिम अपडेट | 2023-03-20 |
| प्रकाशन तिथि | 2021-12-03 |
| डेवलपर | mouiylus |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| एक्सटेंशन वेबसाइट | https://github.com/AminoffZ/viaplay-keyboard-shortcuts |
| सहायता पृष्ठ URL | https://github.com/AminoffZ/viaplay-keyboard-shortcuts |
| समर्थित भाषाएँ | 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"
}
} | |