Custom Scrollbar

Choose or make your own custom scrollbar

Cos'è Custom Scrollbar?

Custom Scrollbar è un'estensione di Chrome sviluppata da Rohan Anand, e la sua funzione principale è "Choose or make your own custom scrollbar".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Custom Scrollbar

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

                        Choose or make your own custom scrollbar. Get a scrollbar with your favorite colors, sizes, and designs.                    

Informazioni di Base sull'Estensione

Nome Custom Scrollbar Custom Scrollbar
ID eijidopnhkddehclhkbakbccdanmfhoh
URL Ufficiale https://chromewebstore.google.com/detail/custom-scrollbar/eijidopnhkddehclhkbakbccdanmfhoh
Descrizione Choose or make your own custom scrollbar
Dimensione del File 22.02 MB
Conteggio Installazioni 393
Versione Corrente 1.1.0
Ultimo Aggiornamento 2021-08-05
Data di Pubblicazione 2021-07-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Rohan Anand
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Scrollbar",
    "version": "1.1.0",
    "description": "Choose or make your own custom scrollbar",
    "options_page": "\/options\/customScrollbarOptions.html",
    "action": {
        "default_popup": "\/quickSettings\/customScrollbarQuickSettings.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "\/images\/icons\/customscrollbaricon16.png",
        "32": "\/images\/icons\/customscrollbaricon32.png",
        "48": "\/images\/icons\/customscrollbaricon48.png",
        "128": "\/images\/icons\/customscrollbaricon128.png"
    },
    "background": {
        "service_worker": "\/customscrollbarstart.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*\/",
                "https:\/\/*\/*"
            ],
            "js": [
                "customScrollbar.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/scrollbarImages*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}