Modern scrollbar

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

What is Modern scrollbar?

Modern scrollbar is a Chrome extension developed by https://luandersonn.com, and its main feature is "A modern look for Chromium's scrollbar. Compatible with light and dark mode.".

Extension Screenshots

screenshot
screenshot

Download Modern scrollbar Extension CRX File

Download Modern scrollbar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Modern scrollbar Modern scrollbar
ID bgfofngpplpmpijncjegfdgilpgamhdk
Official URL https://chromewebstore.google.com/detail/modern-scrollbar/bgfofngpplpmpijncjegfdgilpgamhdk
Description A modern look for Chromium's scrollbar. Compatible with light and dark mode.
File Size 30.62 KB
Installation Count 9,457
Current Version 1.0.0.7
Last Updated 2023-04-24
Publish Date 2020-07-30
Rating 4.76/5 Total 72 Ratings
Developer https://luandersonn.com
Email [email protected]
Payment Type free
Extension Website https://github.com/luandersonn/Modern-scrollbar
Help Page URL https://luandersonn.com
Supported Languages 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": [
                ""
            ]
        }
    ]
}