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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BlackSandSolutions และคุณลักษณะหลักของมันคือ "Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom Scrollbars
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Custom Scrollbars |
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" ] } ] } |