Youtube speed control
This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
Youtube speed controlคืออะไร?
Youtube speed control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wwf4 และคุณลักษณะหลักของมันคือ "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube speed control
ดาวน์โหลดไฟล์ส่วนขยาย Youtube speed control ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ctrl + > - to speed up video ctrl + < - to slow down video ctrl + ? - to return x1 speed;
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gdnknkknodmhgpompjfmhcodhcnamldo |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo |
คำอธิบาย | This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ? |
ขนาดไฟล์ | 70.77 KB |
จำนวนการติดตั้ง | 623 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2017-11-10 |
วันที่เผยแพร่ | 2017-11-10 |
คะแนน | 4.75/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | wwf4 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube speed control", "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "css": [ "styles.css" ], "all_frames": true } ] } |