Smooth Scroller

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

Co to jest Smooth Scroller?

Smooth Scroller to rozszerzenie Chrome opracowane przez katherinepeterson96, a jego główną funkcją jest „Automatically scroll a page smoothly by pressing the "s" key”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Smooth Scroller

Pobierz pliki rozszerzeń Smooth Scroller 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Smooth Scroller Smooth Scroller
ID hjgekbidepgklcmfjmnhdkgjbdodhggb
Oficjalny URL https://chromewebstore.google.com/detail/smooth-scroller/hjgekbidepgklcmfjmnhdkgjbdodhggb
Opis Automatically scroll a page smoothly by pressing the "s" key
Rozmiar pliku 6.94 KB
Liczba instalacji 38
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2021-02-11
Data Publikacji 2021-02-10
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper katherinepeterson96
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}