YouTube Default Playback Speed
Set the default playback speed for YouTube videos! Complete with hotkeys to manipulate the current video speed.
YouTube Default Playback Speedคืออะไร?
YouTube Default Playback Speed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย NotYourAppDev และคุณลักษณะหลักของมันคือ "Set the default playback speed for YouTube videos! Complete with hotkeys to manipulate the current video speed."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Default Playback Speed
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Default Playback Speed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The main popup for the extension allows you to set the default playback speed for YouTube videos along with buttons to set the speed of the video in the current tab to half, normal, and double speed. The main settings popup shown in the screen shots is only active on YouTube video pages. The extension also provides hotkeys for quickly changing the speed of the video in the current tab: Alt+Shift+1 sets the current tab to normal speed Alt+Shift+2 sets the current tab to set default speed Alt+Shift+Up increases the current tab by a the specified increment speed Alt+Shift+Down decreases the current tab by the specified increment speed Please let me know what other features you'd like.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Default Playback Speed |
ID | bcogakegjkeopbkokbkkaopnclmhhfmp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-default-playback/bcogakegjkeopbkokbkkaopnclmhhfmp |
คำอธิบาย | Set the default playback speed for YouTube videos! Complete with hotkeys to manipulate the current video speed. |
ขนาดไฟล์ | 17.75 KB |
จำนวนการติดตั้ง | 2,758 |
เวอร์ชันปัจจุบัน | 3.0.2 |
อัปเดตครั้งล่าสุด | 2024-02-13 |
วันที่เผยแพร่ | 2020-04-24 |
คะแนน | 4.00/5 รวมทั้งหมด 40 คะแนน |
ผู้พัฒนา | NotYourAppDev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Default Playback Speed", "description": "Set the default playback speed for YouTube videos! Complete with hotkeys to manipulate the current video speed.", "version": "3.0.2", "permissions": [ "storage", "tabs", "commands" ], "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "images\/youtube_playback16.png", "32": "images\/youtube_playback32.png", "48": "images\/youtube_playback48.png", "128": "images\/youtube_playback128.png" } }, "background": { "service_worker": "scripts\/worker.js", "type": "module" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "https:\/\/www.youtube.com\/watch*" ], "run_at": "document_end" } ], "commands": { "increment-speed": { "suggested_key": { "default": "Alt+Shift+Up" }, "description": "Increase the speed of the current video by increment." }, "decrement-speed": { "suggested_key": { "default": "Alt+Shift+Down" }, "description": "Decrease the speed of the current video by increment." }, "set-speed-1": { "suggested_key": { "default": "Alt+Shift+1" }, "description": "Set the speed of the video in the current tab to 1x." }, "set-speed-default": { "suggested_key": { "default": "Alt+Shift+2" }, "description": "Set the speed of the video in the current tab to your specified default speed." } }, "web_accessible_resources": [ { "resources": [ "html\/time_ui.html" ], "matches": [ " |