Stylized Scrollbar

Stylize your scroll bar from a handful of presets

Co to jest Stylized Scrollbar?

Stylized Scrollbar to rozszerzenie Chrome opracowane przez Andrew Li, a jego główną funkcją jest „Stylize your scroll bar from a handful of presets”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Stylized Scrollbar

Pobierz pliki rozszerzeń Stylized Scrollbar 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

                        An extension that customizes your scroll bar to either a black or white one. Works on all websites and can be changed on the fly into black or white. Check out the style of the scroll bar above                    

Podstawowe informacje o rozszerzeniu

Nazwa Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
Oficjalny URL https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
Opis Stylize your scroll bar from a handful of presets
Rozmiar pliku 449 KB
Liczba instalacji 57
Aktualna Wersja 0.1.0
Ostatnia Aktualizacja 2021-01-23
Data Publikacji 2021-01-22
Deweloper Andrew Li
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Zeyu-Li/scroll_with_style
Adres URL Strony Pomocy https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stylized Scrollbar",
    "author": "Andrew Li",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Stylize your scroll bar from a handful of presets",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Custom Scrollbar"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_page": "popup.html"
}