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 |
| 官方網址 | 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"
]
}
]
} | |