Stylized Scrollbar
Stylize your scroll bar from a handful of presets
Stylized Scrollbar là gì?
Stylized Scrollbar là một tiện ích mở rộng Chrome được phát triển bởi Andrew Li, và tính năng chính của nó là "Stylize your scroll bar from a handful of presets".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Stylized Scrollbar
Tải xuống các tệp mở rộng Stylized Scrollbar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Stylized Scrollbar |
ID | igpchmaapelclmhofnheepclmfniobnc |
URL Chính Thức | https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc |
Mô tả | Stylize your scroll bar from a handful of presets |
Kích Thước Tệp | 449 KB |
Số Lần Cài Đặt | 57 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2021-01-23 |
Ngày Phát Hành | 2021-01-22 |
Nhà Phát Triển | Andrew Li |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Zeyu-Li/scroll_with_style |
URL Trang Trợ Giúp | https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs |
Ngôn Ngữ Được Hỗ Trợ | 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" } |