Custom Scrollbar

Choose or make your own custom scrollbar

Was ist Custom Scrollbar?

Custom Scrollbar ist eine Chrome-Erweiterung, die von Rohan Anand entwickelt wurde, und ihr Hauptmerkmal ist "Choose or make your own custom scrollbar".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Custom Scrollbar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Custom Scrollbar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Custom Scrollbar Custom Scrollbar
ID eijidopnhkddehclhkbakbccdanmfhoh
Offizielle URL https://chromewebstore.google.com/detail/custom-scrollbar/eijidopnhkddehclhkbakbccdanmfhoh
Beschreibung Choose or make your own custom scrollbar
Dateigröße 22.02 MB
Installationsanzahl 393
Aktuelle Version 1.1.0
Letztes Update 2021-08-05
Veröffentlichungsdatum 2021-07-18
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Rohan Anand
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}