HTML5 Speedy Video
This extension adds fine-grained playback speed control on HTML5 videos.
HTML5 Speedy Videoคืออะไร?
HTML5 Speedy Video เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ricardobcl และคุณลักษณะหลักของมันคือ "This extension adds fine-grained playback speed control on HTML5 videos."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HTML5 Speedy Video
ดาวน์โหลดไฟล์ส่วนขยาย HTML5 Speedy Video ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
It also adds these simple keyboard shortcuts: | Key | Action | | ------------------ | ---------------------- | | control + `+` | Speed up by 0.2x | | control + `-` | Slow down by 0.2x | | control + `0` | Set speed to 1x | | control + `1` | Set speed to 1x | | control + `2` | Set speed to 2x | | control + `3` | Set speed to 2.5x | | control + `4` | Set speed to 3x | | shift + :arrow_left: | \*\* Rewind 2 seconds | | shift + :arrow_right: | \*\* Skip 2 seconds | | shift + :arrow_down: | \*\* Rewind 10 seconds | | shift + :arrow_up: | \*\* Skip 10 seconds |
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | HTML5 Speedy Video |
ID | caogcofklddclhfojcbmccggaohjngmh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/html5-speedy-video/caogcofklddclhfojcbmccggaohjngmh |
คำอธิบาย | This extension adds fine-grained playback speed control on HTML5 videos. |
ขนาดไฟล์ | 42.12 KB |
จำนวนการติดตั้ง | 541 |
เวอร์ชันปัจจุบัน | 2.1 |
อัปเดตครั้งล่าสุด | 2018-09-06 |
วันที่เผยแพร่ | 2018-09-06 |
คะแนน | 4.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | ricardobcl |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ricardobcl/HTML5-Speedy-Video-Extension |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HTML5 Speedy Video", "version": "2.1", "description": "This extension adds fine-grained playback speed control on HTML5 videos.", "offline_enabled": true, "icons": { "32": "icons\/Icon-32.png", "64": "icons\/Icon-64.png", "128": "icons\/Icon-128.png", "256": "icons\/Icon-256.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.netflix.com\/*", "https:\/\/www.netflix.com\/*", "http:\/\/vimeo.com\/*", "https:\/\/vimeo.com\/*", "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "run_at": "document_idle", "css": [ "style.css" ], "js": [ "speedy.js" ] } ] } |