No Playlist Autoplay For YouTube
You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.
No Playlist Autoplay For YouTubeคืออะไร?
No Playlist Autoplay For YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://thomasrichards.xyz และคุณลักษณะหลักของมันคือ "You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย No Playlist Autoplay For YouTube
ดาวน์โหลดไฟล์ส่วนขยาย No Playlist Autoplay For YouTube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
With this extension, when you reach the end of a video in a playlist, the next video is prevented from playing automatically. Click the extension icon to toggle this behaviour on and off. Refresh YouTube after toggling. Alternatively use the shortcut (ctrl+shift+y), which can be changed at chrome://extensions/shortcuts. Source code available via my website. Enjoy.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dkokllldoffaconpbmbaofjbadhjggil |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/no-playlist-autoplay-for/dkokllldoffaconpbmbaofjbadhjggil |
คำอธิบาย | You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling. |
ขนาดไฟล์ | 22.76 KB |
จำนวนการติดตั้ง | 5,186 |
เวอร์ชันปัจจุบัน | 65535.65535.65535.8 |
อัปเดตครั้งล่าสุด | 2021-09-12 |
วันที่เผยแพร่ | 2019-12-31 |
คะแนน | 4.52/5 รวมทั้งหมด 113 คะแนน |
ผู้พัฒนา | https://thomasrichards.xyz |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "author": "Thomas Richards", "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "128": "icons\/Pause-128.png", "64": "icons\/Pause-64.png", "32": "icons\/Pause-32.png" }, "default_title": "Toggle YouTube Playlist Autoplay" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Y" } } }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "description": "You can turn autoplay off\/on for playlists on YouTube. Refresh YouTube after toggling.", "icons": { "128": "icons\/Logo-128.png" }, "name": "No Playlist Autoplay For YouTube", "options_page": "options.html", "permissions": [ "storage", "*:\/\/*.youtube.com\/*" ], "version": "65535.65535.65535.8" } |