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ファイルをダウンロード

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
Eメール [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"
    }
}