Auto Youtube Shorts Scroll Down
Auto Youtube Shorts Scroll Down
什么是Auto Youtube Shorts Scroll Down?
Auto Youtube Shorts Scroll Down是由wonkyungup开发的Chrome扩展程序,该扩展的主要功能是“Auto Youtube Shorts Scroll Down”。
扩展截图
下载Auto Youtube Shorts Scroll Down扩展crx文件
下载Auto Youtube Shorts Scroll Down扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A switch is created at the top inside the video. If there is no switch, it will refresh the page. It is a test project made for personal study, so I would appreciate it if you could understand it even if you fix it late. The code has been posted on Github. If you have any additional or uncomfortable points while using it, please send us a review or e-mail and we will respond. Version 1.0.7 - ADD: dislike show - FIX: scroll Event check, to many event
扩展基本信息
名称 | Auto Youtube Shorts Scroll Down |
ID | bfofdkanfmkkbngkmhmcjichambccene |
官方URL | https://chrome.google.com/webstore/detail/auto-youtube-shorts-scrol/bfofdkanfmkkbngkmhmcjichambccene |
简介 | Auto Youtube Shorts Scroll Down |
文件大小 | 274 KB |
安装次数 | 258 |
当前版本 | 1.0.7 |
更新时间 | 2023-06-25 |
上架时间 | 2023-02-23 |
评分 | 2.67/5 共3次评分 |
开发者 | wonkyungup |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Youtube Shorts Scroll Down", "manifest_version": 3, "version": "1.0.7", "permissions": [ "tabs" ], "description": "Auto Youtube Shorts Scroll Down", "icons": { "16": "16x16.png", "32": "32x32.png", "48": "48x48.png" }, "action": { "default_icon": { "16": "16x16.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/shorts\/*" ], "js": [ "content.js" ] } ] } |