Youtube Speed Control Hotkeys
Allows you to customize your own speed control hotkeys in Youtube
Youtube Speed Control Hotkeysคืออะไร?
Youtube Speed Control Hotkeys เป็นส่วนขยายของ Chrome ที่พัฒนาโดย krsntn และคุณลักษณะหลักของมันคือ "Allows you to customize your own speed control hotkeys in Youtube"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Speed Control Hotkeys
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Speed Control Hotkeys ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
You can customize your own hotkeys to speed up and speed down the playing video on youtube. This extension only works on youtube. ======================================================== Version 1.0.20 - Fixes initial load bug Version 1.0.19 - Migrate to Manifest V3 Version 1.0.18 - Bug fixes and performance improvements Version 1.0.9 - Remove "Seek backward & forward" feature from extension, as Youtube had include this feature in the latest update. Version 1.0.8 - Added inactive icon Version 1.0.7 - Seek backward & forward works even the focus element is not on video player Version 1.0.6 - New configuration effect immediate change without the needs of refreshing page Version 1.0.1 - Updated on configuration UI display Version 1.0 - Basic customization that allows you to customize your own hotkeys of changing youtube playback speed rate.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube Speed Control Hotkeys |
ID | opcjoeippmphadnkmkjocmingcbpmepn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-speed-control-hot/opcjoeippmphadnkmkjocmingcbpmepn |
คำอธิบาย | Allows you to customize your own speed control hotkeys in Youtube |
ขนาดไฟล์ | 578 KB |
จำนวนการติดตั้ง | 490 |
เวอร์ชันปัจจุบัน | 1.0.20 |
อัปเดตครั้งล่าสุด | 2024-01-04 |
วันที่เผยแพร่ | 2020-06-10 |
คะแนน | 4.17/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | krsntn |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Speed Control Hotkeys", "version": "1.0.20", "description": "Allows you to customize your own speed control hotkeys in Youtube", "icons": { "128": "\/images\/icon128.png" }, "permissions": [ "storage" ], "action": { "default_popup": "index.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "css": [ "content.css" ], "js": [ "contentScript.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "manifest_version": 3 } |