Custom Youtube Playback Speed
Easy way to change youtube video playback speed
Custom Youtube Playback Speedとは何ですか?
Custom Youtube Playback SpeedはPH03NIX Softwareによって開発されたChromeの拡張機能で、その主な機能は「Easy way to change youtube video playback speed」です。
拡張機能のスクリーンショット
Custom Youtube Playback Speed拡張機能のCRXファイルをダウンロード
Custom Youtube Playback Speed拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple extension, which let you change playback speed of youtube videos. You can setup value form range 0.10x to 10x with 0.10x step. 3 ways of control integrated into youtube interface: by slider, numeric input or by keys defined in settings.
拡張機能の基本情報
名前 | Custom Youtube Playback Speed |
ID | mlnghacnjjppjfbbjbpkgcemiaglbpii |
公式URL | https://chromewebstore.google.com/detail/custom-youtube-playback-s/mlnghacnjjppjfbbjbpkgcemiaglbpii |
説明 | Easy way to change youtube video playback speed |
ファイルサイズ | 174 KB |
インストール数 | 116 |
現在のバージョン | 1.4.3 |
最終更新日 | 2023-12-03 |
公開日 | 2022-02-01 |
評価 | 4.67/5 合計 3 レビュー |
開発者 | PH03NIX Software |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Custom Youtube Playback Speed", "description": "Easy way to change youtube video playback speed", "version": "1.4.3", "short_name": "YTSpeed", "author": "Krzaku", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_popup": "index.html", "default_title": "Custom yt playback speed settings" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "index.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "icons": { "16": "\/icons\/extension_icon16.png", "32": "\/icons\/extension_icon32.png", "48": "\/icons\/extension_icon48.png", "128": "\/icons\/extension_icon128.png" } } |