Webber | The scrollbar hider

An browser extension designed to let you easily hide scrollbar

O que é Webber | The scrollbar hider?

Webber | The scrollbar hider é uma extensão do Chrome desenvolvida por MG, e sua principal característica é "An browser extension designed to let you easily hide scrollbar".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Webber | The scrollbar hider

Baixe arquivos de extensão Webber | The scrollbar hider no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Webber | The scrollbar hider Webber | The scrollbar hider
ID jiadeaflfegcmnjmcecffnloeochhcog
URL Oficial https://chromewebstore.google.com/detail/webber-the-scrollbar-hide/jiadeaflfegcmnjmcecffnloeochhcog
Descrição An browser extension designed to let you easily hide scrollbar
Tamanho do Arquivo 109 KB
Contagem de Instalações 379
Versão Atual 1.0
Última Atualização 2023-02-14
Data de Publicação 2023-02-13
Classificação 4.00/5 Total de 5 Avaliações
Desenvolvedor MG
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}