Scroll Progress

Shows the scroll progress of current page.

Was ist Scroll Progress?

Scroll Progress ist eine Chrome-Erweiterung, die von https://harapeko.netlify.com entwickelt wurde, und ihr Hauptmerkmal ist "Shows the scroll progress of current page.".

Erweiterungsscreenshots

screenshot

Scroll Progress-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scroll Progress-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Scroll Progress Scroll Progress
ID lcmhhnccfbeinmgacmomlkcahidhjifb
Offizielle URL https://chromewebstore.google.com/detail/scroll-progress/lcmhhnccfbeinmgacmomlkcahidhjifb
Beschreibung Shows the scroll progress of current page.
Dateigröße 197 KB
Installationsanzahl 169
Aktuelle Version 1.0.2
Letztes Update 2020-02-10
Veröffentlichungsdatum 2020-02-10
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler https://harapeko.netlify.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/harapeko/scroll-progress
Hilfeseite URL https://github.com/harapeko/scroll-progress/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}