Netflix Stop Autoplay
Stop netflix from autoplaying!
Netflix Stop Autoplayคืออะไร?
Netflix Stop Autoplay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marcdwyer1738 และคุณลักษณะหลักของมันคือ "Stop netflix from autoplaying!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Stop Autoplay
ดาวน์โหลดไฟล์ส่วนขยาย Netflix Stop Autoplay ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Prevents Netflix from autoplaying videos on the homepage. Recently Netflix has allowed users to disable autoplaying content on their website. For more details on how to disable see here: https://help.netflix.com/en/node/2102. Experience any issues? Open up an issue in the repository or e-mail me at [email protected]! https://github.com/MarcDwyer/netflix-stop-autoplay changelog: 2.7.0 A lot less code and more efficient 2.5.0: Reverted some optimizations as it introduced new bugs
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Netflix Stop Autoplay |
ID | fbcmkdogjehincilpicohipinoobijem |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/netflix-stop-autoplay/fbcmkdogjehincilpicohipinoobijem |
คำอธิบาย | Stop netflix from autoplaying! |
ขนาดไฟล์ | 455 KB |
จำนวนการติดตั้ง | 143 |
เวอร์ชันปัจจุบัน | 2.7 |
อัปเดตครั้งล่าสุด | 2020-09-13 |
วันที่เผยแพร่ | 2020-05-24 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | marcdwyer1738 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/MarcDwyer/netflix-stop-autoplay |
URL หน้าช่วยเหลือ | https://github.com/MarcDwyer/netflix-stop-autoplay |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix Stop Autoplay", "description": "Stop netflix from autoplaying!", "version": "2.7", "browser_action": { "default_icon": "icon_green.png", "default_popup": "popup.html" }, "background": { "scripts": [ "js\/eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/", "https:\/\/www.netflix.com\/browse", "https:\/\/www.netflix.com\/browse\/*", "https:\/\/www.netflix.com\/browse\/*\/**" ], "js": [ "js\/content.js" ] } ], "icons": { "16": "icon_green.png", "48": "icon_green.png", "128": "icon_green.png" }, "permissions": [ "storage" ] } |