Scroll Progress

Shows the scroll progress of current page.

Co to jest Scroll Progress?

Scroll Progress to rozszerzenie Chrome opracowane przez https://harapeko.netlify.com, a jego główną funkcją jest „Shows the scroll progress of current page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Scroll Progress

Pobierz pliki rozszerzeń Scroll Progress w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Scroll Progress Scroll Progress
ID lcmhhnccfbeinmgacmomlkcahidhjifb
Oficjalny URL https://chromewebstore.google.com/detail/scroll-progress/lcmhhnccfbeinmgacmomlkcahidhjifb
Opis Shows the scroll progress of current page.
Rozmiar pliku 197 KB
Liczba instalacji 169
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2020-02-10
Data Publikacji 2020-02-10
Ocena 4.00/5 Łącznie 1 Oceny
Deweloper https://harapeko.netlify.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/harapeko/scroll-progress
Adres URL Strony Pomocy https://github.com/harapeko/scroll-progress/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}