Scroll Progress
Shows the scroll progress of current page.
什么是Scroll Progress?
Scroll Progress是由https://harapeko.netlify.com开发的Chrome扩展程序,该扩展的主要功能是“Shows the scroll progress of current page.”。
扩展截图
下载Scroll Progress扩展crx文件
下载Scroll Progress扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Shows the scroll progress of current page.
It will help you to read long documents.
ページのスクロール進捗率を表示します。
長いドキュメントを読む手助けになるでしょう。
# v1.0.2
fix always 0% for chrome61~
Interoperable body/documentElement scroll behavior
https://www.chromestatus.com/feature/6386758136627200
# v1.0.1
renamed app name
# v1.0.0
published 扩展基本信息
| 名称 | |
| ID | lcmhhnccfbeinmgacmomlkcahidhjifb |
| 官方URL | https://chromewebstore.google.com/detail/scroll-progress/lcmhhnccfbeinmgacmomlkcahidhjifb |
| 简介 | Shows the scroll progress of current page. |
| 文件大小 | 197 KB |
| 安装次数 | 169 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2020-02-10 |
| 上架时间 | 2020-02-10 |
| 评分 | 4.00/5 共1次评分 |
| 开发者 | https://harapeko.netlify.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/harapeko/scroll-progress |
| 帮助页面URL | https://github.com/harapeko/scroll-progress/issues |
| 支持的语言 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Scroll Progress",
"version": "1.0.2",
"description": "Shows the scroll progress of current page.",
"icons": {
"16": "icons\/[email protected]",
"48": "icons\/[email protected]",
"128": "icons\/[email protected]"
},
"permissions": [
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
".\/scroll_progress.js"
]
}
]
} | |