Scroll Progress

Shows the scroll progress of current page.

Vad är Scroll Progress?

Scroll Progress är en Chrome-tillägg utvecklad av https://harapeko.netlify.com, och dess huvudfunktion är "Shows the scroll progress of current page.".

Tilläggsskärmbilder

screenshot

Ladda ner Scroll Progress-förlängningens CRX-fil

Ladda ner Scroll Progress-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Scroll Progress Scroll Progress
ID lcmhhnccfbeinmgacmomlkcahidhjifb
Officiell webbadress https://chromewebstore.google.com/detail/scroll-progress/lcmhhnccfbeinmgacmomlkcahidhjifb
Beskrivning Shows the scroll progress of current page.
Filstorlek 197 KB
Antal Installationer 169
Aktuell Version 1.0.2
Senast Uppdaterad 2020-02-10
Publiceringsdatum 2020-02-10
Betyg 4.00/5 Totalt 1 Betyg
Utvecklare https://harapeko.netlify.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/harapeko/scroll-progress
Hjälpsida URL https://github.com/harapeko/scroll-progress/issues
Stödda Språk 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"
            ]
        }
    ]
}