Stylized Scrollbar

Stylize your scroll bar from a handful of presets

Qu'est-ce que Stylized Scrollbar ?

Stylized Scrollbar est une extension Chrome développée par Andrew Li, et sa fonction principale est "Stylize your scroll bar from a handful of presets".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Stylized Scrollbar

Téléchargez les fichiers d'extension Stylized Scrollbar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
URL Officiel https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
Description Stylize your scroll bar from a handful of presets
Taille du Fichier 449 KB
Nombre d'Installations 57
Version Actuelle 0.1.0
Dernière Mise à Jour 2021-01-23
Date de Publication 2021-01-22
Développeur Andrew Li
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Zeyu-Li/scroll_with_style
URL de la Page d'Aide https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
Langues Prises en Charge 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"
}