Stylized Scrollbar

Stylize your scroll bar from a handful of presets

Cos'è Stylized Scrollbar?

Stylized Scrollbar è un'estensione di Chrome sviluppata da Andrew Li, e la sua funzione principale è "Stylize your scroll bar from a handful of presets".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Stylized Scrollbar

Scarica i file di estensione Stylized Scrollbar 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

                        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                    

Informazioni di Base sull'Estensione

Nome Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
URL Ufficiale https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
Descrizione Stylize your scroll bar from a handful of presets
Dimensione del File 449 KB
Conteggio Installazioni 57
Versione Corrente 0.1.0
Ultimo Aggiornamento 2021-01-23
Data di Pubblicazione 2021-01-22
Sviluppatore Andrew Li
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Zeyu-Li/scroll_with_style
URL della Pagina di Aiuto https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
Lingue Supportate 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"
}