Smooth Scroller

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

Was ist Smooth Scroller?

Smooth Scroller ist eine Chrome-Erweiterung, die von katherinepeterson96 entwickelt wurde, und ihr Hauptmerkmal ist "Automatically scroll a page smoothly by pressing the "s" key".

Erweiterungsscreenshots

screenshot

Smooth Scroller-Erweiterungs-CRX-Datei herunterladen

Laden Sie Smooth Scroller-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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Smooth Scroller Smooth Scroller
ID hjgekbidepgklcmfjmnhdkgjbdodhggb
Offizielle URL https://chromewebstore.google.com/detail/smooth-scroller/hjgekbidepgklcmfjmnhdkgjbdodhggb
Beschreibung Automatically scroll a page smoothly by pressing the "s" key
Dateigröße 6.94 KB
Installationsanzahl 38
Aktuelle Version 1.0
Letztes Update 2021-02-11
Veröffentlichungsdatum 2021-02-10
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler katherinepeterson96
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}