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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
}