Stop Youtube Autoplay Timer
This extension allows you to set a timer on Youtube's Autoplay
什么是Stop Youtube Autoplay Timer?
Stop Youtube Autoplay Timer是由park8开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to set a timer on Youtube's Autoplay”。
扩展截图
下载Stop Youtube Autoplay Timer扩展crx文件
下载Stop Youtube Autoplay Timer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Do you fall asleep to Youtube videos on autoplay and wake up to still find Youtube videos playing? This extension will allow you to set a timer on the autoplay toggle so videos will stop auto playing
扩展基本信息
名称 | Stop Youtube Autoplay Timer |
ID | amklgdeinpjclemjbepgimpkaknhfaem |
官方URL | https://chromewebstore.google.com/detail/stop-youtube-autoplay-tim/amklgdeinpjclemjbepgimpkaknhfaem |
简介 | This extension allows you to set a timer on Youtube's Autoplay |
文件大小 | 59.76 KB |
安装次数 | 95 |
当前版本 | 1.1 |
更新时间 | 2020-08-19 |
上架时间 | 2020-08-17 |
开发者 | park8 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "matches": [ "https:\/\/www.youtube.com\/watch*", "http:\/\/www.youtube.com\/watch*" ], "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "widget.html" }, "icons": { "128": "res\/icon128.png" }, "description": "This extension allows you to set a timer on Youtube's Autoplay", "manifest_version": 2, "name": "Stop Youtube Autoplay Timer", "permissions": [ "activeTab", "storage", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "short_name": "Timed Autoplay", "version": "1.1" } |