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
电子邮箱 [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"
    }
}