YouTube Autoplay Disabler
Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
什么是YouTube Autoplay Disabler?
YouTube Autoplay Disabler是由Luciano Ratamero开发的Chrome扩展程序,该扩展的主要功能是“Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.”。
扩展截图
下载YouTube Autoplay Disabler扩展crx文件
下载YouTube Autoplay Disabler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Free and open-sourced alternative for disabling YouTube's autoplay "feature"
Checks if YouTube autoplay is on and, if it is, disables it.
https://github.com/lucianoratamero/youtube-autoplay-disabler 扩展基本信息
| 名称 | |
| ID | mlebignjhimfeggkjhhgbhomibiplmem |
| 官方URL | https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem |
| 简介 | Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done. |
| 文件大小 | 366 KB |
| 安装次数 | 161 |
| 当前版本 | 0.2.1 |
| 更新时间 | 2021-04-29 |
| 上架时间 | 2018-06-15 |
| 评分 | 3.12/5 共17次评分 |
| 开发者 | Luciano Ratamero |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "YouTube Autoplay Disabler",
"description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.",
"version": "0.2.1",
"icons": {
"128": "icon-small.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"browser_action": {
"default_icon": "icon-small.png"
}
} | |