Auto Scroll
Extension for lazy ppl
什么是Auto Scroll?
Auto Scroll是由drperstry开发的Chrome扩展程序,该扩展的主要功能是“Extension for lazy ppl”。
扩展截图
下载Auto Scroll扩展crx文件
下载Auto Scroll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This chrome extension is for scrolling automatically. Can be very helpful for readers and loading pages that have items. 扩展基本信息
| 名称 | |
| ID | pgogpmjdfnolmgihjemjakelopockkgo |
| 官方URL | https://chromewebstore.google.com/detail/auto-scroll/pgogpmjdfnolmgihjemjakelopockkgo |
| 简介 | Extension for lazy ppl |
| 文件大小 | 13.51 KB |
| 安装次数 | 102 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2023-09-22 |
| 上架时间 | 2023-09-21 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | drperstry |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en,ar |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extension_name__",
"version": "1.0.0",
"description": "__MSG_extension_description__",
"manifest_version": 3,
"author": "Abdulrahman huwais",
"permissions": [
"activeTab",
"storage"
],
"default_locale": "en",
"action": {
"default_icon": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"default_popup": "popup\/popup.html",
"default_title": "Scrolling"
},
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"content_scripts": [
{
"js": [
"scripts\/content-script.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"runAt": "document_end"
}
]
} | |