Wheeltab

Switch tabs using your mouse wheel.

Cos'è Wheeltab?

Wheeltab è un'estensione di Chrome sviluppata da Mat, e la sua funzione principale è "Switch tabs using your mouse wheel.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Wheeltab

Scarica i file di estensione Wheeltab 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

                        Wheeltab allows you to navigate through your open tabs using your mouse wheel.

Press and hold the left button of your mouse, without moving your mouse. Then, use your mouse wheel to scroll through the list of open tabs in the menu that will appear. Release the left button to jump to the highlighted tab. Use the "Escape" key to close the menu and stay on the current tab.                    

Informazioni di Base sull'Estensione

Nome Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
URL Ufficiale https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Descrizione Switch tabs using your mouse wheel.
Dimensione del File 11.09 KB
Conteggio Installazioni 253
Versione Corrente 0.0.4
Ultimo Aggiornamento 2022-04-18
Data di Pubblicazione 2016-05-27
Valutazione 1.75/5 Totale 8 Valutazioni
Sviluppatore Mat
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/matco/wheeltab
URL della Pagina di Aiuto https://github.com/matco/wheeltab
Lingue Supportate en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wheeltab",
    "version": "0.0.4",
    "default_locale": "en",
    "description": "__MSG_extension_description__",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "incognito": "spanning",
    "author": "Matthieu Corageoud",
    "permissions": [
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "background.js"
    }
}