Custom Scrollbars
Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac
什么是Custom Scrollbars?
Custom Scrollbars是由BlackSandSolutions开发的Chrome扩展程序,该扩展的主要功能是“Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac”。
扩展截图
下载Custom Scrollbars扩展crx文件
下载Custom Scrollbars扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | kbjbpcegpnjlinplpkkffdiebdddkpdo |
| 官方URL | https://chromewebstore.google.com/detail/custom-scrollbars/kbjbpcegpnjlinplpkkffdiebdddkpdo |
| 简介 | Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac |
| 文件大小 | 282 KB |
| 安装次数 | 49 |
| 当前版本 | 0.0.0.3 |
| 更新时间 | 2021-04-26 |
| 上架时间 | 2021-04-26 |
| 评分 | 4.00/5 共2次评分 |
| 开发者 | BlackSandSolutions |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | 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"
]
}
]
} | |