YouTube Autoplay Disabler
Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
YouTube Autoplay Disablerคืออะไร?
YouTube Autoplay Disabler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Luciano Ratamero และคุณลักษณะหลักของมันคือ "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Autoplay Disabler
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Autoplay Disabler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Free and open-sourced alternative for disabling YouTube's autoplay "feature" Checks if YouTube autoplay is on and, if it is, disables it. https://github.com/lucianoratamero/youtube-autoplay-disabler
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Autoplay Disabler |
ID | mlebignjhimfeggkjhhgbhomibiplmem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem |
คำอธิบาย | Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done. |
ขนาดไฟล์ | 366 KB |
จำนวนการติดตั้ง | 161 |
เวอร์ชันปัจจุบัน | 0.2.1 |
อัปเดตครั้งล่าสุด | 2021-04-29 |
วันที่เผยแพร่ | 2018-06-15 |
คะแนน | 3.12/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | Luciano Ratamero |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Autoplay Disabler", "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.", "version": "0.2.1", "icons": { "128": "icon-small.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "browser_action": { "default_icon": "icon-small.png" } } |