HTML5 Speedy Video
This extension adds fine-grained playback speed control on HTML5 videos.
HTML5 Speedy Videoとは何ですか?
HTML5 Speedy Videoはricardobclによって開発されたChromeの拡張機能で、その主な機能は「This extension adds fine-grained playback speed control on HTML5 videos.」です。
拡張機能のスクリーンショット
HTML5 Speedy Video拡張機能のCRXファイルをダウンロード
HTML5 Speedy Video拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
It also adds these simple keyboard shortcuts:
| Key | Action |
| ------------------ | ---------------------- |
| control + `+` | Speed up by 0.2x |
| control + `-` | Slow down by 0.2x |
| control + `0` | Set speed to 1x |
| control + `1` | Set speed to 1x |
| control + `2` | Set speed to 2x |
| control + `3` | Set speed to 2.5x |
| control + `4` | Set speed to 3x |
| shift + :arrow_left: | \*\* Rewind 2 seconds |
| shift + :arrow_right: | \*\* Skip 2 seconds |
| shift + :arrow_down: | \*\* Rewind 10 seconds |
| shift + :arrow_up: | \*\* Skip 10 seconds | 拡張機能の基本情報
| 名前 | |
| ID | caogcofklddclhfojcbmccggaohjngmh |
| 公式URL | https://chromewebstore.google.com/detail/html5-speedy-video/caogcofklddclhfojcbmccggaohjngmh |
| 説明 | This extension adds fine-grained playback speed control on HTML5 videos. |
| ファイルサイズ | 42.12 KB |
| インストール数 | 541 |
| 現在のバージョン | 2.1 |
| 最終更新日 | 2018-09-06 |
| 公開日 | 2018-09-06 |
| 評価 | 4.00/5 合計 3 レビュー |
| 開発者 | ricardobcl |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/ricardobcl/HTML5-Speedy-Video-Extension |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "HTML5 Speedy Video",
"version": "2.1",
"description": "This extension adds fine-grained playback speed control on HTML5 videos.",
"offline_enabled": true,
"icons": {
"32": "icons\/Icon-32.png",
"64": "icons\/Icon-64.png",
"128": "icons\/Icon-128.png",
"256": "icons\/Icon-256.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.netflix.com\/*",
"https:\/\/www.netflix.com\/*",
"http:\/\/vimeo.com\/*",
"https:\/\/vimeo.com\/*",
"http:\/\/www.youtube.com\/*",
"https:\/\/www.youtube.com\/*"
],
"run_at": "document_idle",
"css": [
"style.css"
],
"js": [
"speedy.js"
]
}
]
} | |