Scroll Progress

Shows the scroll progress of current page.

Cos'è Scroll Progress?

Scroll Progress è un'estensione di Chrome sviluppata da https://harapeko.netlify.com, e la sua funzione principale è "Shows the scroll progress of current page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Scroll Progress

Scarica i file di estensione Scroll Progress in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Scroll Progress Scroll Progress
ID lcmhhnccfbeinmgacmomlkcahidhjifb
URL Ufficiale https://chromewebstore.google.com/detail/scroll-progress/lcmhhnccfbeinmgacmomlkcahidhjifb
Descrizione Shows the scroll progress of current page.
Dimensione del File 197 KB
Conteggio Installazioni 169
Versione Corrente 1.0.2
Ultimo Aggiornamento 2020-02-10
Data di Pubblicazione 2020-02-10
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore https://harapeko.netlify.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/harapeko/scroll-progress
URL della Pagina di Aiuto https://github.com/harapeko/scroll-progress/issues
Lingue Supportate 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"
            ]
        }
    ]
}