Audio/Video Playback Speed Controller
A simple interface to control the playback speed of audio and video elements in a webpage.
Audio/Video Playback Speed Controllerとは何ですか?
Audio/Video Playback Speed ControllerはChris Gallegosによって開発されたChromeの拡張機能で、その主な機能は「A simple interface to control the playback speed of audio and video elements in a webpage.」です。
拡張機能のスクリーンショット
Audio/Video Playback Speed Controller拡張機能のCRXファイルをダウンロード
Audio/Video Playback Speed Controller拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Controls the playback speed of all audio and video elements on a webpage. Features: - No permissions required - 5 preset speeds - Custom speed slider color coded to indicate fast-forward/slow-motion: - Green means normal speed - Cyan means fast-forward - Red means slow-motion - Custom speed slider snaps into place for common speeds - Speed setting is automatically saved for each individual webpage
拡張機能の基本情報
名前 | Audio/Video Playback Speed Controller |
ID | adibdjpkkmpgfidnjngnfdpcghohhbmm |
公式URL | https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm |
説明 | A simple interface to control the playback speed of audio and video elements in a webpage. |
ファイルサイズ | 450 KB |
インストール数 | 15,128 |
現在のバージョン | 1.1 |
最終更新日 | 2022-01-10 |
公開日 | 2020-04-30 |
評価 | 4.44/5 合計 27 レビュー |
開発者 | Chris Gallegos |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | http://gallegosaudio.com/Extensions-Privacy-Policy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Audio\/Video Playback Speed Controller", "short_name": "Playback Controller", "version": "1.1", "description": "A simple interface to control the playback speed of audio and video elements in a webpage.", "browser_action": { "default_title": "Playback Controller", "default_popup": "popup.html", "default_icon": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab" ], "icons": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } } |