Auto Scroll Extension
Auto Scroller for Chrome to help user scroll automatically
什么是Auto Scroll Extension?
Auto Scroll Extension是由https://071yoon.github.io开发的Chrome扩展程序,该扩展的主要功能是“Auto Scroller for Chrome to help user scroll automatically”。
扩展截图
下载Auto Scroll Extension扩展crx文件
下载Auto Scroll Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Auto Scroller for Chrome for automation This Extension helps user to use scroller as automation form. for example, if you are using a two monitors at once and want one monitor to scroll down automatically, this extension will do! And in addition, extension remembers your last option for scrolling, and will remain as that option.
扩展基本信息
名称 | Auto Scroll Extension |
ID | ppkbgpllhklbjlmmncjjgogcdphkaaho |
官方URL | https://chromewebstore.google.com/detail/auto-scroll-extension/ppkbgpllhklbjlmmncjjgogcdphkaaho |
简介 | Auto Scroller for Chrome to help user scroll automatically |
文件大小 | 84.15 KB |
安装次数 | 383 |
当前版本 | 1.0.2 |
更新时间 | 2023-09-05 |
上架时间 | 2023-09-04 |
评分 | 5.00/5 共1次评分 |
开发者 | https://071yoon.github.io |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Scroll Extension", "description": "Auto Scroller for Chrome to help user scroll automatically", "manifest_version": 3, "version": "1.0.2", "permissions": [ "activeTab", "scripting", "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |