Audio/Video Playback Speed Controller
A simple interface to control the playback speed of audio and video elements in a webpage.
Audio/Video Playback Speed Controllerคืออะไร?
Audio/Video Playback Speed Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chris Gallegos และคุณลักษณะหลักของมันคือ "A simple interface to control the playback speed of audio and video elements in a webpage."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Audio/Video Playback Speed Controller
ดาวน์โหลดไฟล์ส่วนขยาย Audio/Video Playback Speed Controller ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Controls the playback speed of all audio and video elements on a webpage. Features: - No permissions required - 5 preset speeds - Custom speed slider color coded to indicate fast-forward/slow-motion: - Green means normal speed - Cyan means fast-forward - Red means slow-motion - Custom speed slider snaps into place for common speeds - Speed setting is automatically saved for each individual webpage
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Audio/Video Playback Speed Controller |
ID | adibdjpkkmpgfidnjngnfdpcghohhbmm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/audiovideo-playback-speed/adibdjpkkmpgfidnjngnfdpcghohhbmm |
คำอธิบาย | A simple interface to control the playback speed of audio and video elements in a webpage. |
ขนาดไฟล์ | 450 KB |
จำนวนการติดตั้ง | 15,128 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2022-01-10 |
วันที่เผยแพร่ | 2020-04-30 |
คะแนน | 4.44/5 รวมทั้งหมด 27 คะแนน |
ผู้พัฒนา | Chris Gallegos |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | http://gallegosaudio.com/Extensions-Privacy-Policy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Audio\/Video Playback Speed Controller", "short_name": "Playback Controller", "version": "1.1", "description": "A simple interface to control the playback speed of audio and video elements in a webpage.", "browser_action": { "default_title": "Playback Controller", "default_popup": "popup.html", "default_icon": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "activeTab" ], "icons": { "16": "icons\/fast_forward_16.png", "32": "icons\/fast_forward_32.png", "64": "icons\/fast_forward_64.png", "128": "icons\/fast_forward_128.png", "256": "icons\/fast_forward_256.png" } } |