Stylized Scrollbar

Stylize your scroll bar from a handful of presets

¿Qué es Stylized Scrollbar?

Stylized Scrollbar es una extensión de Chrome desarrollada por Andrew Li, y su función principal es "Stylize your scroll bar from a handful of presets".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Stylized Scrollbar

Descarga archivos de extensión Stylized Scrollbar en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
URL Oficial https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
Descripción Stylize your scroll bar from a handful of presets
Tamaño del Archivo 449 KB
Cantidad de Instalaciones 57
Versión Actual 0.1.0
Última Actualización 2021-01-23
Fecha de Publicación 2021-01-22
Desarrollador Andrew Li
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Zeyu-Li/scroll_with_style
URL de la Página de Ayuda https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
Idiomas Soportados 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"
}