Video Speed Controller
Control HTML video speed.
Video Speed Controllerとは何ですか?
Video Speed Controllerはjojonkiによって開発されたChromeの拡張機能で、その主な機能は「Control HTML video speed.」です。
拡張機能のスクリーンショット
Video Speed Controller拡張機能のCRXファイルをダウンロード
Video Speed Controller拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Control Youtube video speed with shortcuts. Unlike Youtube original speed adjustment, you can speed up as much as you want. - Ctrl + Shift + L : Speed Up. - Ctrl + Shift + J : Speed Down. - Ctrl + Shift + K : Speed Neutral. You can customize the shortcuts at chrome://extensions/shortcuts. The source code is fully available. https://github.com/jojonki/video-speed-controller
拡張機能の基本情報
名前 | Video Speed Controller |
ID | ndbdjjgcjmdenadephbmglknakcnalil |
公式URL | https://chromewebstore.google.com/detail/video-speed-controller/ndbdjjgcjmdenadephbmglknakcnalil |
説明 | Control HTML video speed. |
ファイルサイズ | 637 KB |
インストール数 | 415 |
現在のバージョン | 2.0 |
最終更新日 | 2022-12-29 |
公開日 | 2021-03-07 |
評価 | 4.50/5 合計 2 レビュー |
開発者 | jojonki |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/jojonki/video-speed-controller/ |
ヘルプページのURL | https://github.com/jojonki/video-speed-controller/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Speed Controller", "version": "2.0", "description": "Control HTML video speed.", "permissions": [ "scripting", "activeTab", "notifications" ], "host_permissions": [ "https:\/\/youtube.com\/*" ], "manifest_version": 3, "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon_16.png", "24": "images\/icon_24.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "default_title": "Control Video Speed" }, "commands": { "speed-up": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" }, "description": "Speed Up", "global": false }, "speed-down": { "suggested_key": { "default": "Ctrl+Shift+J", "mac": "MacCtrl+Shift+J" }, "description": "Speed Down", "global": false }, "speed-neutral": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "MacCtrl+Shift+K" }, "description": "Speed Neutral", "global": false } }, "icons": { "16": "images\/icon_16.png", "24": "images\/icon_24.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } } |