Custom Scrollbars
Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac
Custom Scrollbars là gì?
Custom Scrollbars là một tiện ích mở rộng Chrome được phát triển bởi BlackSandSolutions, và tính năng chính của nó là "Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac".
Ả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 Custom Scrollbars
Tải xuống các tệp mở rộng Custom Scrollbars 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
Customise the width and appearance of the scrollbars for most websites. A long term Windows user I recently started using a Mac and found the teeny tiny scrollbars a nuisance to use. This extension allows you to make them wider so they are easier to click. You can also change the colours should you wish. You can set a global default style for all website and also provide custom styles for individual sites.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Custom Scrollbars |
ID | kbjbpcegpnjlinplpkkffdiebdddkpdo |
URL Chính Thức | https://chromewebstore.google.com/detail/custom-scrollbars/kbjbpcegpnjlinplpkkffdiebdddkpdo |
Mô tả | Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac |
Kích Thước Tệp | 282 KB |
Số Lần Cài Đặt | 49 |
Phiên Bản Hiện Tại | 0.0.0.3 |
Cập Nhật Lần Cuối | 2021-04-26 |
Ngày Phát Hành | 2021-04-26 |
Đánh Giá | 4.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | BlackSandSolutions |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Custom Scrollbars", "description": "Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac", "version": "0.0.0.3", "icons": { "16": "icon-16x16.png", "48": "icon-48x48.png", "128": "icon-128x128.png" }, "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "32": "icon-32x32.png" }, "default_popup": "index.html", "default_title": "Open Popup" }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+O", "mac": "MacCtrl+Shift+O" }, "description": "Toggle Popup" } }, "permissions": [ "tabs", "storage", "*:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ] } |