No AutoPlay
Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.
No AutoPlayคืออะไร?
No AutoPlay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jccovey และคุณลักษณะหลักของมันคือ "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No AutoPlay
ดาวน์โหลดไฟล์ส่วนขยาย No AutoPlay ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Limited to YouTube videos. The extension will not prevent HTML5 videos hosted on other websites auto-playing, but for YouTube videos, the extension will pause the video when the page loads.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | No AutoPlay |
ID | kpcjcnadodbmcfhkknekeofhidnkjeii |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/no-autoplay/kpcjcnadodbmcfhkknekeofhidnkjeii |
คำอธิบาย | Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab. |
ขนาดไฟล์ | 4.07 KB |
จำนวนการติดตั้ง | 116 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2017-12-06 |
วันที่เผยแพร่ | 2017-12-06 |
คะแนน | 3.00/5 รวมทั้งหมด 7 คะแนน |
ผู้พัฒนา | jccovey |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No AutoPlay", "version": "1.0.0", "description": "Pauses any HTML5 videos that would autoplay. Click to play the video when you want to watch it, not when you open the browser tab.", "permissions": [], "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*", "http:\/\/*.youtu.be\/*", "https:\/\/*.youtu.be\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "manifest_version": 2 } |