Remove YouTube Autoplay
Isn't YouTube autoplay the worst? This removes it
Remove YouTube Autoplay là gì?
Remove YouTube Autoplay là một tiện ích mở rộng Chrome được phát triển bởi Kareem ElFaramawi, và tính năng chính của nó là "Isn't YouTube autoplay the worst? This removes it".
Ả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 Remove YouTube Autoplay
Tải xuống các tệp mở rộng Remove YouTube Autoplay 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Remove YouTube Autoplay |
ID | afppjndapmkekhnionfccdnajhdnokhj |
URL Chính Thức | https://chromewebstore.google.com/detail/remove-youtube-autoplay/afppjndapmkekhnionfccdnajhdnokhj |
Mô tả | Isn't YouTube autoplay the worst? This removes it |
Kích Thước Tệp | 1.68 MB |
Số Lần Cài Đặt | 848 |
Phiên Bản Hiện Tại | 0.1.7 |
Cập Nhật Lần Cuối | 2023-06-05 |
Ngày Phát Hành | 2018-10-06 |
Đánh Giá | 3.57/5 Tổng số 23 Đánh Giá |
Nhà Phát Triển | Kareem ElFaramawi |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/krx/chrome-delete-youtube-autoplay |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |