Stylized Scrollbar
Stylize your scroll bar from a handful of presets
Was ist Stylized Scrollbar?
Stylized Scrollbar ist eine Chrome-Erweiterung, die von Andrew Li entwickelt wurde, und ihr Hauptmerkmal ist "Stylize your scroll bar from a handful of presets".
Erweiterungsscreenshots
Stylized Scrollbar-Erweiterungs-CRX-Datei herunterladen
Laden Sie Stylized Scrollbar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Stylized Scrollbar |
ID | igpchmaapelclmhofnheepclmfniobnc |
Offizielle URL | https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc |
Beschreibung | Stylize your scroll bar from a handful of presets |
Dateigröße | 449 KB |
Installationsanzahl | 57 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2021-01-23 |
Veröffentlichungsdatum | 2021-01-22 |
Entwickler | Andrew Li |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/Zeyu-Li/scroll_with_style |
Hilfeseite URL | https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs |
Unterstützte Sprachen | 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" } |