Youtube Custom Speed
Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!
Youtube Custom Speedคืออะไร?
Youtube Custom Speed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nizioleque และคุณลักษณะหลักของมันคือ "Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Custom Speed
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Custom Speed ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Youtube Custom Speed lets you play any Youtube video at any speed you like, from 0.0125x to 16x! Use the options menu to set your preferred playback rate values. Then, change the speed using buttons at the bottom of the video. It also cooperates with the default Youtube keyboard shortcuts - Shift + , and Shift + . If you experience any issues, please feel free to email me with a bug report.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | kmfcinojnfabkpndlgomnfjllgeppegb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-custom-speed/kmfcinojnfabkpndlgomnfjllgeppegb |
คำอธิบาย | Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts! |
ขนาดไฟล์ | 26.33 KB |
จำนวนการติดตั้ง | 6,263 |
เวอร์ชันปัจจุบัน | 1.6.1 |
อัปเดตครั้งล่าสุด | 2022-02-19 |
วันที่เผยแพร่ | 2021-12-02 |
คะแนน | 4.71/5 รวมทั้งหมด 48 คะแนน |
ผู้พัฒนา | nizioleque |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.6.1", "default_locale": "en", "icons": { "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "options\/options.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content\/content.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content\/changespeed.js", "content\/kbshort.js", "content\/menu.js", "content\/observer.js", "content\/configure.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "ui.html" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false } } |