Auto Pause Video
Automatically pauses html 5 videos after a page loads
Auto Pause Videoคืออะไร?
Auto Pause Video เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kfegen และคุณลักษณะหลักของมันคือ "Automatically pauses html 5 videos after a page loads"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Pause Video
ดาวน์โหลดไฟล์ส่วนขยาย Auto Pause Video ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A simple extension that pauses videos when the page is loaded.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ![]() |
ID | nohcggfcgcklgfcebniodgpobblnbeff |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/auto-pause-video/nohcggfcgcklgfcebniodgpobblnbeff |
คำอธิบาย | Automatically pauses html 5 videos after a page loads |
ขนาดไฟล์ | 3.19 KB |
จำนวนการติดตั้ง | 91 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2014-06-05 |
วันที่เผยแพร่ | 2014-06-05 |
คะแนน | 3.33/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | kfegen |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Auto Pause Video", "description": "Automatically pauses html 5 videos after a page loads", "version": "1.0", "content_scripts": [ { "run_at": "document_idle", "all_frames": true, "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |