Modern scrollbar

A modern look for Chromium's scrollbar. Compatible with light and dark mode.

Wat is Modern scrollbar?

Modern scrollbar is een Chrome-extensie ontwikkeld door https://luandersonn.com, en de belangrijkste functie is "A modern look for Chromium's scrollbar. Compatible with light and dark mode.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Modern scrollbar

Download Modern scrollbar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Have a nice, thin, modern scrollbar. The modern scrollbar works with the dark mode of most websites.

This extension is extremely lightweight, it does not slow down your browser. The source code is open source, available on GitHub.                    

Basisinformatie over de Extensie

Naam Modern scrollbar Modern scrollbar
ID bgfofngpplpmpijncjegfdgilpgamhdk
Officiële URL https://chromewebstore.google.com/detail/modern-scrollbar/bgfofngpplpmpijncjegfdgilpgamhdk
Beschrijving A modern look for Chromium's scrollbar. Compatible with light and dark mode.
Bestandsgrootte 30.62 KB
Aantal Installaties 9,457
Huidige Versie 1.0.0.7
Laatst Bijgewerkt 2023-04-24
Publicatiedatum 2020-07-30
Beoordeling 4.76/5 Totaal 72 Beoordelingen
Ontwikkelaar https://luandersonn.com
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/luandersonn/Modern-scrollbar
Help Pagina-URL https://luandersonn.com
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Modern scrollbar",
    "version": "1.0.0.7",
    "manifest_version": 3,
    "description": "A modern look for Chromium's scrollbar. Compatible with light and dark mode.",
    "icons": {
        "16": "icons\/icon16x16.png",
        "32": "icons\/icon32x32.png",
        "48": "icons\/icon48x48.png",
        "64": "icons\/icon64x64.png",
        "128": "icons\/icon128x128.png",
        "256": "icons\/icon256x256.png"
    },
    "action": {
        "default_title": "Modern scrollbar",
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.reddit.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "css\/scrollbar.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}