Scroll Speed

Change the scroll speed

Co to jest Scroll Speed?

Scroll Speed to rozszerzenie Chrome opracowane przez Bert Hekman, a jego główną funkcją jest „Change the scroll speed”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Scroll Speed

Pobierz pliki rozszerzeń Scroll Speed 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

                        Change the scrolling speed of the mouse wheel                    

Podstawowe informacje o rozszerzeniu

Nazwa Scroll Speed Scroll Speed
ID mfmhdfkinffhnfhaalnabffcfjgcmdhl
Oficjalny URL https://chromewebstore.google.com/detail/scroll-speed/mfmhdfkinffhnfhaalnabffcfjgcmdhl
Opis Change the scroll speed
Rozmiar pliku 10.95 KB
Liczba instalacji 3,683
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-04-27
Data Publikacji 2020-04-23
Ocena 4.28/5 Łącznie 29 Oceny
Deweloper Bert Hekman
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/DemonTPx/chrome-scroll-speed
Adres URL Strony Pomocy https://github.com/DemonTPx/chrome-scroll-speed/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scroll Speed",
    "version": "0.1",
    "description": "Change the scroll speed",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "exclude_globs": [
                "*.pdf"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "manifest_version": 2
}