Remove YouTube Autoplay
Isn't YouTube autoplay the worst? This removes it
什么是Remove YouTube Autoplay?
Remove YouTube Autoplay是由Kareem ElFaramawi开发的Chrome扩展程序,该扩展的主要功能是“Isn't YouTube autoplay the worst? This removes it”。
扩展截图
下载Remove YouTube Autoplay扩展crx文件
下载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" } } |