Stylized Scrollbar
Stylize your scroll bar from a handful of presets
What is Stylized Scrollbar?
Stylized Scrollbar is a Chrome extension developed by Andrew Li, and its main feature is "Stylize your scroll bar from a handful of presets".
Extension Screenshots
Download Stylized Scrollbar Extension CRX File
Download Stylized 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
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
Extension Basic Information
Name | Stylized Scrollbar |
ID | igpchmaapelclmhofnheepclmfniobnc |
Official URL | https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc |
Description | Stylize your scroll bar from a handful of presets |
File Size | 449 KB |
Installation Count | 57 |
Current Version | 0.1.0 |
Last Updated | 2021-01-23 |
Publish Date | 2021-01-22 |
Developer | Andrew Li |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Zeyu-Li/scroll_with_style |
Help Page URL | https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs |
Supported Languages | 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" } |