Webber | The scrollbar hider

An browser extension designed to let you easily hide scrollbar

Webber | The scrollbar hider란 무엇입니까?

Webber | The scrollbar hider은(는) MG에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An browser extension designed to let you easily hide scrollbar"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Webber | The scrollbar hider 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}