Modern scrollbar

A modern look for Chromium's scrollbar. Compatible with light and dark mode.

Cos'è Modern scrollbar?

Modern scrollbar è un'estensione di Chrome sviluppata da https://luandersonn.com, e la sua funzione principale è "A modern look for Chromium's scrollbar. Compatible with light and dark mode.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Modern scrollbar

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

                        Have a nice, thin, modern scrollbar. The modern scrollbar works with the dark mode of most websites.

This extension is extremely lightweight, it does not slow down your browser. The source code is open source, available on GitHub.                    

Informazioni di Base sull'Estensione

Nome Modern scrollbar Modern scrollbar
ID bgfofngpplpmpijncjegfdgilpgamhdk
URL Ufficiale https://chromewebstore.google.com/detail/modern-scrollbar/bgfofngpplpmpijncjegfdgilpgamhdk
Descrizione A modern look for Chromium's scrollbar. Compatible with light and dark mode.
Dimensione del File 30.62 KB
Conteggio Installazioni 9,457
Versione Corrente 1.0.0.7
Ultimo Aggiornamento 2023-04-24
Data di Pubblicazione 2020-07-30
Valutazione 4.76/5 Totale 72 Valutazioni
Sviluppatore https://luandersonn.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/luandersonn/Modern-scrollbar
URL della Pagina di Aiuto https://luandersonn.com
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Modern scrollbar",
    "version": "1.0.0.7",
    "manifest_version": 3,
    "description": "A modern look for Chromium's scrollbar. Compatible with light and dark mode.",
    "icons": {
        "16": "icons\/icon16x16.png",
        "32": "icons\/icon32x32.png",
        "48": "icons\/icon48x48.png",
        "64": "icons\/icon64x64.png",
        "128": "icons\/icon128x128.png",
        "256": "icons\/icon256x256.png"
    },
    "action": {
        "default_title": "Modern scrollbar",
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.reddit.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "css\/scrollbar.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}