Auto Scroll Down
Customizable auto scroll web pages
什么是Auto Scroll Down?
Auto Scroll Down是由fernandapg82开发的Chrome扩展程序,该扩展的主要功能是“Customizable auto scroll web pages”。
扩展截图
下载Auto Scroll Down扩展crx文件
下载Auto Scroll Down扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A speed-customizable auto-scroll Google Chrome extension. It allows you to easily change the auto-scroll speed and save it in three different modes; slow, medium and fast. 扩展基本信息
| 名称 | |
| ID | lnagemjinihjlbhmohaaacdflafjdkmm |
| 官方URL | https://chromewebstore.google.com/detail/auto-scroll-down/lnagemjinihjlbhmohaaacdflafjdkmm |
| 简介 | Customizable auto scroll web pages |
| 文件大小 | 8.05 KB |
| 安装次数 | 951 |
| 当前版本 | 0.0.1 |
| 更新时间 | 2023-05-10 |
| 上架时间 | 2023-05-09 |
| 评分 | 4.00/5 共4次评分 |
| 开发者 | fernandapg82 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/FP22FD/auto-scroll-down-chrome-extension |
| 帮助页面URL | https://github.com/FP22FD/auto-scroll-down-chrome-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Auto Scroll Down",
"version": "0.0.1",
"description": "Customizable auto scroll web pages",
"icons": {
"48": "icons\/autoscroll.png",
"128": "icons\/autoscroll.png"
},
"background": {
"service_worker": "js\/service_worker.js",
"type": "module"
},
"action": {
"default_icon": {
"48": "icons\/autoscroll.png",
"128": "icons\/autoscroll.png"
}
},
"permissions": [
"activeTab",
"scripting",
"storage"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "Command+B"
}
}
},
"options_page": "options\/options.html"
} | |