Video Speed Control HTML5
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Video Speed Control HTML5とは何ですか?
Video Speed Control HTML5はadminによって開発されたChromeの拡張機能で、その主な機能は「Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.」です。
拡張機能のスクリーンショット
Video Speed Control HTML5拡張機能のCRXファイルをダウンロード
Video Speed Control HTML5拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
拡張機能の基本情報
名前 | |
ID | pgeeiieaichainfdhpdanloeimnpofhl |
公式URL | https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl |
説明 | Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons. |
ファイルサイズ | 60.54 KB |
インストール数 | 884 |
現在のバージョン | 1.1.2 |
最終更新日 | 2022-10-23 |
公開日 | 2022-10-23 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | admin |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Speed Control HTML5", "version": "1.1.2", "manifest_version": 3, "minimum_chrome_version": "89", "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.", "icons": { "128": "images\/icon128.png" }, "background": { "service_worker": "bg.js" }, "permissions": [ "storage", "webRequest", "tabs" ], "options_ui": { "page": "html5\/options.html", "open_in_tab": true }, "action": { "default_icon": { "64": "images\/icon64.png" }, "default_popup": "html5\/popup.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "match_about_blank": true, "exclude_matches": [ "https:\/\/plus.google.com\/hangouts\/*", "https:\/\/hangouts.google.com\/*", "https:\/\/meet.google.com\/*" ], "css": [ "inject\/inject.css" ], "js": [ "inject\/inject.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "ct.js" ], "run_at": "document_end", "all_frames": false } ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ] } |