Custom Scrollbars

Give your browser a personal touch with customized scrollbars!

Wat is Custom Scrollbars?

Custom Scrollbars is een Chrome-extensie ontwikkeld door Wesley Branton, en de belangrijkste functie is "Give your browser a personal touch with customized scrollbars!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Custom Scrollbars

Download Custom Scrollbars-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Custom Scrollbars Custom Scrollbars
ID ddbipglapfjojhfapmpmofnaoellkggc
Officiële URL https://chromewebstore.google.com/detail/custom-scrollbars/ddbipglapfjojhfapmpmofnaoellkggc
Beschrijving Give your browser a personal touch with customized scrollbars!
Bestandsgrootte 150 KB
Aantal Installaties 8,547
Huidige Versie 4.3
Laatst Bijgewerkt 2024-02-07
Publicatiedatum 2021-04-17
Beoordeling 4.44/5 Totaal 39 Beoordelingen
Ontwikkelaar Wesley Branton
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://customscrollbars.com
Help Pagina-URL https://customscrollbars.com/help
URL van de Privacybeleid Pagina https://addons.wesleybranton.com/privacy
Ondersteunde Talen 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": [
        ""
    ]
}