Custom Scrollbar

Choose or make your own custom scrollbar

Custom Scrollbarคืออะไร?

Custom Scrollbar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rohan Anand และคุณลักษณะหลักของมันคือ "Choose or make your own custom scrollbar"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom Scrollbar

ดาวน์โหลดไฟล์ส่วนขยาย Custom Scrollbar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Custom Scrollbar Custom Scrollbar
ID eijidopnhkddehclhkbakbccdanmfhoh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/custom-scrollbar/eijidopnhkddehclhkbakbccdanmfhoh
คำอธิบาย Choose or make your own custom scrollbar
ขนาดไฟล์ 22.02 MB
จำนวนการติดตั้ง 393
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2021-08-05
วันที่เผยแพร่ 2021-07-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Rohan Anand
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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": [
                ""
            ]
        }
    ]
}