Stylized Scrollbar

Stylize your scroll bar from a handful of presets

Apa itu Stylized Scrollbar?

Stylized Scrollbar adalah ekstensi Chrome yang dikembangkan oleh Andrew Li, dan fitur utamanya adalah "Stylize your scroll bar from a handful of presets".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Stylized Scrollbar

Unduh file ekstensi Stylized Scrollbar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        An extension that customizes your scroll bar to either a black or white one. Works on all websites and can be changed on the fly into black or white. Check out the style of the scroll bar above                    

Informasi Dasar Ekstensi

Nama Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
URL Resmi https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
Deskripsi Stylize your scroll bar from a handful of presets
Ukuran File 449 KB
Jumlah Instalasi 57
Versi Saat Ini 0.1.0
Terakhir Diperbarui 2021-01-23
Tanggal Publikasi 2021-01-22
Pengembang Andrew Li
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Zeyu-Li/scroll_with_style
URL Halaman Bantuan https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stylized Scrollbar",
    "author": "Andrew Li",
    "version": "0.1.0",
    "manifest_version": 2,
    "description": "Stylize your scroll bar from a handful of presets",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "images\/icon_128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Custom Scrollbar"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_page": "popup.html"
}