YouStopper for YouTube™
Prevents YouTube™ videos autoplay
YouStopper for YouTube™คืออะไร?
YouStopper for YouTube™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Prevents YouTube™ videos autoplay"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouStopper for YouTube™
ดาวน์โหลดไฟล์ส่วนขยาย YouStopper for YouTube™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Prevents YouTube™ videos from starting to play automatically when you open them. Doesn't affect ads so it's better to use together with an Ad-Blocking extension like uBlock Origin. Doesn't stop autoplaying in playlists. Source available at https://github.com/youstopper-dev/youstopper
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouStopper for YouTube™ |
ID | hmfocflebeolgkehnimcchankdjljepb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youstopper-for-youtube/hmfocflebeolgkehnimcchankdjljepb |
คำอธิบาย | Prevents YouTube™ videos autoplay |
ขนาดไฟล์ | 51.95 KB |
จำนวนการติดตั้ง | 1,482 |
เวอร์ชันปัจจุบัน | 0.2 |
อัปเดตครั้งล่าสุด | 2018-02-18 |
วันที่เผยแพร่ | 2018-02-18 |
คะแนน | 3.56/5 รวมทั้งหมด 41 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "short_name": "YouStopper", "description": "__MSG_extension_description__", "version": "0.2", "default_locale": "en", "icons": { "32": "icons\/youstop_icon_32.png", "48": "icons\/youstop_icon_48.png", "64": "icons\/youstop_icon_64.png", "128": "icons\/youstop_icon_128.png", "512": "icons\/youstop_icon_512.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "page.js" ], "browser_action": { "default_icon": { "32": "icons\/youstop_icon_32.png", "64": "icons\/youstop_icon_64.png" }, "default_title": "__MSG_ba_click2disable__" }, "permissions": [ "storage" ], "minimum_chrome_version": "50" } |