Webber | The scrollbar hider

An browser extension designed to let you easily hide scrollbar

Cos'è Webber | The scrollbar hider?

Webber | The scrollbar hider è un'estensione di Chrome sviluppata da MG, e la sua funzione principale è "An browser extension designed to let you easily hide scrollbar".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Webber | The scrollbar hider

Scarica i file di estensione Webber | The scrollbar hider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Webber | The scrollbar hider Webber | The scrollbar hider
ID jiadeaflfegcmnjmcecffnloeochhcog
URL Ufficiale https://chromewebstore.google.com/detail/webber-the-scrollbar-hide/jiadeaflfegcmnjmcecffnloeochhcog
Descrizione An browser extension designed to let you easily hide scrollbar
Dimensione del File 109 KB
Conteggio Installazioni 379
Versione Corrente 1.0
Ultimo Aggiornamento 2023-02-14
Data di Pubblicazione 2023-02-13
Valutazione 4.00/5 Totale 5 Valutazioni
Sviluppatore MG
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}