Stylized Scrollbar
Stylize your scroll bar from a handful of presets
什么是Stylized Scrollbar?
Stylized Scrollbar是由Andrew Li开发的Chrome扩展程序,该扩展的主要功能是“Stylize your scroll bar from a handful of presets”。
扩展截图
下载Stylized Scrollbar扩展crx文件
下载Stylized Scrollbar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Stylized Scrollbar |
ID | igpchmaapelclmhofnheepclmfniobnc |
官方URL | https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc |
简介 | Stylize your scroll bar from a handful of presets |
文件大小 | 449 KB |
安装次数 | 57 |
当前版本 | 0.1.0 |
更新时间 | 2021-01-23 |
上架时间 | 2021-01-22 |
开发者 | Andrew Li |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Zeyu-Li/scroll_with_style |
帮助页面URL | https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs |
支持的语言 | 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" } |