Smooth Scroller

Automatically scroll a page smoothly by pressing the "s" key

Cos'è Smooth Scroller?

Smooth Scroller è un'estensione di Chrome sviluppata da katherinepeterson96, e la sua funzione principale è "Automatically scroll a page smoothly by pressing the "s" key".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Smooth Scroller

Scarica i file di estensione Smooth Scroller 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

                        Scroll down a webpage at a smooth pace with the press of a button.
Great for recording product/site demos or skimming a webpage. 

Press "S" to scroll.

Press "A" to scroll slowly
Press "D" to scroll fast

Press again to stop.                    

Informazioni di Base sull'Estensione

Nome Smooth Scroller Smooth Scroller
ID hjgekbidepgklcmfjmnhdkgjbdodhggb
URL Ufficiale https://chromewebstore.google.com/detail/smooth-scroller/hjgekbidepgklcmfjmnhdkgjbdodhggb
Descrizione Automatically scroll a page smoothly by pressing the "s" key
Dimensione del File 6.94 KB
Conteggio Installazioni 38
Versione Corrente 1.0
Ultimo Aggiornamento 2021-02-11
Data di Pubblicazione 2021-02-10
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore katherinepeterson96
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smooth Scroller",
    "description": "Automatically scroll a page smoothly by pressing the \"s\" key",
    "version": "1.0",
    "browser_action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}