Autoplay Stopper for YouTube
Chrome Extension for Turning off Autoplay on YouTube.
什么是Autoplay Stopper for YouTube?
Autoplay Stopper for YouTube是由https://fiahfy.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension for Turning off Autoplay on YouTube.”。
扩展截图
下载Autoplay Stopper for YouTube扩展crx文件
下载Autoplay Stopper for YouTube扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
- Turn off autoplay on video and channel page.
扩展基本信息
名称 | Autoplay Stopper for YouTube |
ID | nllpbgemclgokfdjneckdfnhjpigolko |
官方URL | https://chromewebstore.google.com/detail/autoplay-stopper-for-yout/nllpbgemclgokfdjneckdfnhjpigolko |
简介 | Chrome Extension for Turning off Autoplay on YouTube. |
文件大小 | 145 KB |
安装次数 | 1,329 |
当前版本 | 0.0.3 |
更新时间 | 2022-12-31 |
上架时间 | 2020-08-28 |
评分 | 3.57/5 共14次评分 |
开发者 | https://fiahfy.blogspot.com |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ] } ], "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Autoplay Stopper for YouTube", "description": "Chrome Extension for Turning off Autoplay on YouTube.", "version": "0.0.3" } |