Stylized Scrollbar

Stylize your scroll bar from a handful of presets

Hvad er Stylized Scrollbar?

Stylized Scrollbar er en Chrome-udvidelse udviklet af Andrew Li, og dens hovedfunktion er "Stylize your scroll bar from a handful of presets".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Stylized Scrollbar-udvidelses-CRX-fil

Download Stylized Scrollbar-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
Officiel URL https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
Beskrivelse Stylize your scroll bar from a handful of presets
Filstørrelse 449 KB
Antal Installationer 57
Nuværende Version 0.1.0
Senest Opdateret 2021-01-23
Udgivelsesdato 2021-01-22
Udvikler Andrew Li
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Zeyu-Li/scroll_with_style
Hjælpeside-URL https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
Understøttede Sprog 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"
}