Remove YouTube Autoplay
Isn't YouTube autoplay the worst? This removes it
Remove YouTube Autoplayคืออะไร?
Remove YouTube Autoplay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kareem ElFaramawi และคุณลักษณะหลักของมันคือ "Isn't YouTube autoplay the worst? This removes it"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Remove YouTube Autoplay
ดาวน์โหลดไฟล์ส่วนขยาย Remove YouTube Autoplay ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Simple extension to completely disable and remove the YouTube autoplay feature, which would load another video after the current one ends. This extension will continue to work if you: - Delete browser history - Enter incognito mode (After enabling this option in your extension settings) Note that this extension only affects videos that would normally show the autoplay switch, this excludes playlists, livestreams, etc.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Remove YouTube Autoplay |
ID | afppjndapmkekhnionfccdnajhdnokhj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj |
คำอธิบาย | Isn't YouTube autoplay the worst? This removes it |
ขนาดไฟล์ | 1.68 MB |
จำนวนการติดตั้ง | 848 |
เวอร์ชันปัจจุบัน | 0.1.7 |
อัปเดตครั้งล่าสุด | 2023-06-05 |
วันที่เผยแพร่ | 2018-10-06 |
คะแนน | 3.57/5 รวมทั้งหมด 23 คะแนน |
ผู้พัฒนา | Kareem ElFaramawi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/krx/chrome-delete-youtube-autoplay |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Remove YouTube Autoplay", "description": "Isn't YouTube autoplay the worst? This removes it", "author": "krx", "version": "0.1.7", "host_permissions": [ "http:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "js\/disableAutoplay.js" ], "run_at": "document_end" } ], "action": { "default_icon": "img\/icon_19.png" }, "icons": { "16": "img\/icon_16.png", "48": "img\/icon_48.png", "64": "img\/icon_64.png", "128": "img\/icon_128.png" } } |