Shortcuts for video acceleration
Allows to natively specify shortcuts for speed up or slow down active video
Shortcuts for video accelerationとは何ですか?
Shortcuts for video accelerationはABrillによって開発されたChromeの拡張機能で、その主な機能は「Allows to natively specify shortcuts for speed up or slow down active video」です。
拡張機能のスクリーンショット
Shortcuts for video acceleration拡張機能のCRXファイルをダウンロード
Shortcuts for video acceleration拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The extension allows to natively specify shortcuts for video acceleration in Chrome:
- Speed up/slow down
- Play video on max possible playback speed
- Reset speed to usual
1. Open source
2. Uses native shortcuts manager for extensions in Chrome
3. Almost no-code extension (less than 100 lines)
4. Pure and clean 拡張機能の基本情報
| 名前 | |
| ID | chaknloimoaeonfpfkdoielpnhdfleaf |
| 公式URL | https://chromewebstore.google.com/detail/shortcuts-for-video-accel/chaknloimoaeonfpfkdoielpnhdfleaf |
| 説明 | Allows to natively specify shortcuts for speed up or slow down active video |
| ファイルサイズ | 41.69 KB |
| インストール数 | 83 |
| 現在のバージョン | 1.0 |
| 最終更新日 | 2020-04-29 |
| 公開日 | 2020-04-26 |
| 開発者 | ABrill |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/andrey-brill/a-chrome-extensions/tree/master/video-accelerator |
| ヘルプページのURL | https://github.com/andrey-brill/a-chrome-extensions/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Shortcuts for video acceleration",
"description": "Allows to natively specify shortcuts for speed up or slow down active video",
"version": "1.0",
"manifest_version": 2,
"icons": {
"16": "images\/video-accelerator-16px.png",
"32": "images\/video-accelerator-32px.png",
"64": "images\/video-accelerator-64px.png",
"128": "images\/video-accelerator-128px.png",
"256": "images\/video-accelerator-256px.png",
"512": "images\/video-accelerator-512px.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"contentScript.js"
],
"all_frames": true
}
],
"browser_action": {
"default_title": "Open hotkeys bindings"
},
"permissions": [
"tabs"
],
"commands": {
"video-speed-up": {
"description": "Speed up active video",
"suggested_key": {
"default": "Alt+Up"
}
},
"video-slow-down": {
"description": "Slow down active video",
"suggested_key": {
"default": "Alt+Down"
}
},
"video-reset-speed": {
"description": "Reset playback speed",
"suggested_key": {
"default": "Alt+Shift+Down"
}
},
"video-max-speed": {
"description": "Maximize playback speed",
"suggested_key": {
"default": "Alt+Shift+Up"
}
}
}
} | |