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開發的Chrome擴展程式,該擴展的主要功能是“Adds keyboard shortcuts to the Viaplay streaming site. Natively the streaming website only supports space to pause/unpause. This…”。
擴展截圖
下載Viaplay Keyboard Shortcuts擴展crx文件
下載Viaplay Keyboard Shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
| 官方網址 | 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"
}
} | |