SelfScroll
This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
什么是SelfScroll?
SelfScroll是由https://zerobug.it开发的Chrome扩展程序,该扩展的主要功能是“This extension allow to automatically scroll the page. Suitable for monitors and kiosks.”。
扩展截图
下载SelfScroll扩展crx文件
下载SelfScroll扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension allow to automatically scroll the page. Suitable for monitors and kiosks.
Buy me a coffe :D
Litecoin: MC8PtUhSL2iJCx5GWrisPZPpgiFE56ejyc
Paypal: https://www.paypal.me/ZeroBug 扩展基本信息
| 名称 | |
| ID | lofkbkbhpmeihoaogggfbhmjdekjihlf |
| 官方URL | https://chromewebstore.google.com/detail/selfscroll/lofkbkbhpmeihoaogggfbhmjdekjihlf |
| 简介 | This extension allow to automatically scroll the page. Suitable for monitors and kiosks. |
| 文件大小 | 132 KB |
| 安装次数 | 1,476 |
| 当前版本 | 1.4 |
| 更新时间 | 2018-11-13 |
| 上架时间 | 2018-11-13 |
| 评分 | 4.40/5 共5次评分 |
| 开发者 | https://zerobug.it |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://zerobug.it/ |
| 支持的语言 | en,it |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "SelfScroll",
"version": "1.4",
"description": "This extension allow to automatically scroll the page. Suitable for monitors and kiosks.",
"default_locale": "en",
"icons": {
"16": ".\/icons\/selfscroll_16.png",
"48": ".\/icons\/selfscroll_48.png",
"128": ".\/icons\/selfscroll_128.png"
},
"permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"storage",
"tabs"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"selfscroll_script.js"
]
}
],
"options_ui": {
"page": "selfscroll_options.html",
"chrome_style": true
},
"background": {
"scripts": [
"selfscroll_background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": ".\/icons\/selfscroll.png",
"default_title": "SelfScroll"
},
"manifest_version": 2
} | |