Custom Scrollbars

Give your browser a personal touch with customized scrollbars!

Cos'è Custom Scrollbars?

Custom Scrollbars è un'estensione di Chrome sviluppata da Wesley Branton, e la sua funzione principale è "Give your browser a personal touch with customized scrollbars!".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Custom Scrollbars

Scarica i file di estensione Custom Scrollbars in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Custom Scrollbars Custom Scrollbars
ID ddbipglapfjojhfapmpmofnaoellkggc
URL Ufficiale https://chromewebstore.google.com/detail/custom-scrollbars/ddbipglapfjojhfapmpmofnaoellkggc
Descrizione Give your browser a personal touch with customized scrollbars!
Dimensione del File 150 KB
Conteggio Installazioni 8,547
Versione Corrente 4.3
Ultimo Aggiornamento 2024-02-07
Data di Pubblicazione 2021-04-17
Valutazione 4.44/5 Totale 39 Valutazioni
Sviluppatore Wesley Branton
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://customscrollbars.com
URL della Pagina di Aiuto https://customscrollbars.com/help
URL della Pagina della Politica sulla Privacy https://addons.wesleybranton.com/privacy
Lingue Supportate 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": [
        ""
    ]
}