Video Stream Shortcuts
Add some YouTube-like shortcuts to video streaming services
Video Stream Shortcutsとは何ですか?
Video Stream ShortcutsはMasaki Kobayashiによって開発されたChromeの拡張機能で、その主な機能は「Add some YouTube-like shortcuts to video streaming services」です。
拡張機能のスクリーンショット
Video Stream Shortcuts拡張機能のCRXファイルをダウンロード
Video Stream Shortcuts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Want YouTube-like shortcut keys in other streaming services?
This extension enables you to use some shortcuts below.
k: Pause/Resume the video
j: Move 10 seconds backward
l: Move 10 seconds forward
f: Enable/Disable fullscreen
m: Mute/Unmute
Shift+, / <: Decrease playback speed
Shift+. / >: Increase playback speed
0–9: Jump to percentages of the video, except for DAZN.
Supported services
- Prime Video
- TED
- Microsoft Stream
- DAZN
- OPENREC
This extension is open source.
Suggestions and pull requests are welcomed!
https://github.com/mkobayashime/video-stream-shortcuts 拡張機能の基本情報
| 名前 | |
| ID | jkclfjpmbcenbmmheenahiglgkefekim |
| 公式URL | https://chromewebstore.google.com/detail/video-stream-shortcuts/jkclfjpmbcenbmmheenahiglgkefekim |
| 説明 | Add some YouTube-like shortcuts to video streaming services |
| ファイルサイズ | 32.35 KB |
| インストール数 | 750 |
| 現在のバージョン | 4.1.0 |
| 最終更新日 | 2023-09-10 |
| 公開日 | 2020-06-25 |
| 評価 | 5.00/5 合計 5 レビュー |
| 開発者 | Masaki Kobayashi |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/mkobayashime/video-stream-shortcuts |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Video Stream Shortcuts",
"version": "4.1.0",
"description": "Add some YouTube-like shortcuts to video streaming services",
"icons": {
"16": "icons\/icon_16.png",
"32": "icons\/icon_32.png",
"48": "icons\/icon_48.png",
"64": "icons\/icon_64.png",
"128": "icons\/icon_128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"https:\/\/web.microsoftstream.com\/*"
],
"js": [
"msStream.js"
]
},
{
"matches": [
"https:\/\/www.amazon.co.jp\/gp\/video\/*"
],
"js": [
"primeVideo.js"
]
},
{
"matches": [
"https:\/\/www.ted.com\/talks\/*"
],
"run_at": "document_end",
"js": [
"ted.js"
]
},
{
"matches": [
"https:\/\/www.dazn.com\/*"
],
"run_at": "document_end",
"js": [
"dazn.js"
]
},
{
"matches": [
"https:\/\/www.openrec.tv\/live\/*"
],
"run_at": "document_end",
"js": [
"openrec.js"
]
}
],
"permissions": [
"storage"
],
"web_accessible_resources": [
"svg\/*",
"*.css"
]
} | |