YouTube Shorts Autoscroll
Automatically scrolls to the next YouTube Shorts video when one ends.
什么是YouTube Shorts Autoscroll?
YouTube Shorts Autoscroll是由panthebig开发的Chrome扩展程序,该扩展的主要功能是“Automatically scrolls to the next YouTube Shorts video when one ends.”。
扩展截图
下载YouTube Shorts Autoscroll扩展crx文件
下载YouTube Shorts Autoscroll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Introducing the Shorts Auto-Scroll Extension – an open-source revolutionary tool designed for the modern content consumer. This extension seamlessly integrates with your YouTube Shorts experience, allowing you to enjoy an uninterrupted flow of bite-sized videos. No more manual scrolling or endless clicking; with the Auto-Scroll feature, your favorite Shorts are delivered to you in a continuous stream, tailored to your interests. Dive into a world of creativity, humor, and inspiration, all with the effortless ease of automatic scrolling. Download the extension today and redefine the way you explore YouTube Shorts ! Open-Source Repository: https://github.com/panthebig/Youtube-Shorts-Autoscroller-Chrome-Extension
扩展基本信息
名称 | YouTube Shorts Autoscroll |
ID | dmmihimcjbhpmpkolhnelmhbknfcajmd |
官方URL | https://chromewebstore.google.com/detail/youtube-shorts-autoscroll/dmmihimcjbhpmpkolhnelmhbknfcajmd |
简介 | Automatically scrolls to the next YouTube Shorts video when one ends. |
文件大小 | 6.56 KB |
安装次数 | 399 |
当前版本 | 1.0 |
更新时间 | 2023-08-16 |
上架时间 | 2023-08-16 |
评分 | 3.50/5 共2次评分 |
开发者 | panthebig |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Shorts Autoscroll", "description": "Automatically scrolls to the next YouTube Shorts video when one ends.", "version": "1.0", "permissions": [ "scripting", "webNavigation", "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/shorts\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/shorts\/*" ], "js": [ ".\/content.js" ] } ], "action": { "default_popup": "popup.html" }, "background": { "service_worker": ".\/background.js" } } |