No Playlist Autoplay For YouTube
You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.
No Playlist Autoplay For YouTube là gì?
No Playlist Autoplay For YouTube là một tiện ích mở rộng Chrome được phát triển bởi https://thomasrichards.xyz, và tính năng chính của nó là "You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng No Playlist Autoplay For YouTube
Tải xuống các tệp mở rộng No Playlist Autoplay For YouTube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | No Playlist Autoplay For YouTube |
ID | dkokllldoffaconpbmbaofjbadhjggil |
URL Chính Thức | https://chromewebstore.google.com/detail/no-playlist-autoplay-for/dkokllldoffaconpbmbaofjbadhjggil |
Mô tả | You can turn autoplay off/on for playlists on YouTube. Refresh YouTube after toggling. |
Kích Thước Tệp | 22.76 KB |
Số Lần Cài Đặt | 5,186 |
Phiên Bản Hiện Tại | 65535.65535.65535.8 |
Cập Nhật Lần Cuối | 2021-09-12 |
Ngày Phát Hành | 2019-12-31 |
Đánh Giá | 4.52/5 Tổng số 113 Đánh Giá |
Nhà Phát Triển | https://thomasrichards.xyz |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |