Webber | The scrollbar hider

An browser extension designed to let you easily hide scrollbar

Webber | The scrollbar hiderคืออะไร?

Webber | The scrollbar hider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย MG และคุณลักษณะหลักของมันคือ "An browser extension designed to let you easily hide scrollbar"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Webber | The scrollbar hider

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

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

                        An browser extension designed to customize some display settings. By now, it lets you automatically hide scrollbar.

-> In order to hide scrollbar, open the extension popup and change switch state.

-> Your choices are saved locally on your PC. After loading a new page or restarting browser, chosen option will be applied automatically.

Source code:
https://github.com/Angr0/Webber                    

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

ชื่อ Webber | The scrollbar hider Webber | The scrollbar hider
ID jiadeaflfegcmnjmcecffnloeochhcog
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/webber-the-scrollbar-hide/jiadeaflfegcmnjmcecffnloeochhcog
คำอธิบาย An browser extension designed to let you easily hide scrollbar
ขนาดไฟล์ 109 KB
จำนวนการติดตั้ง 379
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2023-02-14
วันที่เผยแพร่ 2023-02-13
คะแนน 4.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา MG
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Webber | The scrollbar hider",
    "description": "An browser extension designed to let you easily hide scrollbar",
    "version": "1.0",
    "icons": {
        "16": "\/Images\/WebberLogo16.png",
        "32": "\/Images\/WebberLogo32.png",
        "48": "\/Images\/WebberLogo48.png",
        "128": "\/Images\/WebberLogo128.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Webber"
    },
    "incognito": "split",
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}