Video Speed Control HTML5
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
Video Speed Control HTML5คืออะไร?
Video Speed Control HTML5 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย admin และคุณลักษณะหลักของมันคือ "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Speed Control HTML5
ดาวน์โหลดไฟล์ส่วนขยาย Video Speed Control HTML5 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | pgeeiieaichainfdhpdanloeimnpofhl |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/video-speed-control-html5/pgeeiieaichainfdhpdanloeimnpofhl |
คำอธิบาย | Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons. |
ขนาดไฟล์ | 60.54 KB |
จำนวนการติดตั้ง | 884 |
เวอร์ชันปัจจุบัน | 1.1.2 |
อัปเดตครั้งล่าสุด | 2022-10-23 |
วันที่เผยแพร่ | 2022-10-23 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | admin |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Speed Control HTML5", "version": "1.1.2", "manifest_version": 3, "minimum_chrome_version": "89", "description": "Manage self-played HTML5 videos. Adjust playback speed and other parameters with shortcuts and buttons.", "icons": { "128": "images\/icon128.png" }, "background": { "service_worker": "bg.js" }, "permissions": [ "storage", "webRequest", "tabs" ], "options_ui": { "page": "html5\/options.html", "open_in_tab": true }, "action": { "default_icon": { "64": "images\/icon64.png" }, "default_popup": "html5\/popup.html" }, "content_scripts": [ { "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "match_about_blank": true, "exclude_matches": [ "https:\/\/plus.google.com\/hangouts\/*", "https:\/\/hangouts.google.com\/*", "https:\/\/meet.google.com\/*" ], "css": [ "inject\/inject.css" ], "js": [ "inject\/inject.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "ct.js" ], "run_at": "document_end", "all_frames": false } ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ] } ] } |