Custom Scrollbars

Give your browser a personal touch with customized scrollbars!

Custom Scrollbars क्या है?

Custom Scrollbars Wesley Branton द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Give your browser a personal touch with customized scrollbars!"।

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

screenshot

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

crx प्रारूप में Custom Scrollbars एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Give your browser a personalized touch with custom scrollbar colors! You can select from any range of colors and toggle between the default width and thin scrollbar... or hide it altogether if that's what floats your boat.                    

एक्सटेंशन की मूल जानकारी

नाम Custom Scrollbars Custom Scrollbars
ID ddbipglapfjojhfapmpmofnaoellkggc
आधिकारिक URL https://chromewebstore.google.com/detail/custom-scrollbars/ddbipglapfjojhfapmpmofnaoellkggc
विवरण Give your browser a personal touch with customized scrollbars!
फ़ाइल का आकार 150 KB
स्थापना संख्या 8,547
वर्तमान संस्करण 4.3
अंतिम अपडेट 2024-02-07
प्रकाशन तिथि 2021-04-17
रेटिंग 4.44/5 कुल 39 रेटिंग्स
डेवलपर Wesley Branton
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://customscrollbars.com
सहायता पृष्ठ URL https://customscrollbars.com/help
गोपनीयता नीति पृष्ठ URL https://addons.wesleybranton.com/privacy
समर्थित भाषाएँ de,en,fr,nl,es,it,pl,fi,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "4.3",
    "description": "__MSG_extensionDescription__",
    "author": "Wesley Branton",
    "default_locale": "en",
    "icons": {
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "action": {
        "default_icon": {
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "64": "icons\/icon-64.png",
            "96": "icons\/icon-96.png",
            "128": "icons\/icon-128.png"
        },
        "default_title": "__MSG_extensionName__",
        "default_popup": "popup\/popup.html"
    },
    "options_ui": {
        "page": "options\/scrollbars.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/addons.wesleybranton.com\/addon\/custom-scrollbars\/*",
                "*:\/\/customscrollbars.com\/*"
            ],
            "js": [
                "crossbrowser.js",
                "webservice\/unsubscribeFromNotifications.js",
                "webservice\/openOptions.js"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/components\/light\/*.svg",
                "images\/components\/dark\/*.svg"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "permissions": [
        "storage",
        "scripting"
    ],
    "optional_permissions": [
        "downloads"
    ],
    "host_permissions": [
        ""
    ]
}