Stylized Scrollbar

Stylize your scroll bar from a handful of presets

ما هو Stylized Scrollbar؟

Stylized Scrollbar هو إضافة Chrome تم تطويرها بواسطة Andrew Li، والميزة الرئيسية لها هي "Stylize your scroll bar from a handful of presets".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Stylized Scrollbar

قم بتنزيل ملفات الامتداد Stylized Scrollbar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Stylized Scrollbar Stylized Scrollbar
ID igpchmaapelclmhofnheepclmfniobnc
عنوان URL الرسمي https://chromewebstore.google.com/detail/stylized-scrollbar/igpchmaapelclmhofnheepclmfniobnc
الوصف Stylize your scroll bar from a handful of presets
حجم الملف 449 KB
عدد التثبيتات 57
النسخة الحالية 0.1.0
آخر تحديث 2021-01-23
تاريخ النشر 2021-01-22
المطور Andrew Li
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/Zeyu-Li/scroll_with_style
عنوان صفحة المساعدة https://github.com/Zeyu-Li/scroll_with_style/discussions/categories/bugs
اللغات المدعومة 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"
}