Custom Scrollbar

Choose or make your own custom scrollbar

Co to jest Custom Scrollbar?

Custom Scrollbar to rozszerzenie Chrome opracowane przez Rohan Anand, a jego główną funkcją jest „Choose or make your own custom scrollbar”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Custom Scrollbar

Pobierz pliki rozszerzeń Custom Scrollbar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Choose or make your own custom scrollbar. Get a scrollbar with your favorite colors, sizes, and designs.                    

Podstawowe informacje o rozszerzeniu

Nazwa Custom Scrollbar Custom Scrollbar
ID eijidopnhkddehclhkbakbccdanmfhoh
Oficjalny URL https://chromewebstore.google.com/detail/custom-scrollbar/eijidopnhkddehclhkbakbccdanmfhoh
Opis Choose or make your own custom scrollbar
Rozmiar pliku 22.02 MB
Liczba instalacji 393
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2021-08-05
Data Publikacji 2021-07-18
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Rohan Anand
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Scrollbar",
    "version": "1.1.0",
    "description": "Choose or make your own custom scrollbar",
    "options_page": "\/options\/customScrollbarOptions.html",
    "action": {
        "default_popup": "\/quickSettings\/customScrollbarQuickSettings.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "\/images\/icons\/customscrollbaricon16.png",
        "32": "\/images\/icons\/customscrollbaricon32.png",
        "48": "\/images\/icons\/customscrollbaricon48.png",
        "128": "\/images\/icons\/customscrollbaricon128.png"
    },
    "background": {
        "service_worker": "\/customscrollbarstart.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*\/",
                "https:\/\/*\/*"
            ],
            "js": [
                "customScrollbar.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/scrollbarImages*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}