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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Custom Scrollbars 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
            ]
        }
    ]
}