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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improve accessibility by using custom width and styles for scrollbars. Useful for increasing the size of tiny scrollbars on Mac"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Custom Scrollbars एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}