Wheeltab

Switch tabs using your mouse wheel.

Wat is Wheeltab?

Wheeltab is een Chrome-extensie ontwikkeld door Mat, en de belangrijkste functie is "Switch tabs using your mouse wheel.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Wheeltab

Download Wheeltab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
Officiële URL https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Beschrijving Switch tabs using your mouse wheel.
Bestandsgrootte 11.09 KB
Aantal Installaties 253
Huidige Versie 0.0.4
Laatst Bijgewerkt 2022-04-18
Publicatiedatum 2016-05-27
Beoordeling 1.75/5 Totaal 8 Beoordelingen
Ontwikkelaar Mat
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/matco/wheeltab
Help Pagina-URL https://github.com/matco/wheeltab
Ondersteunde Talen 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"
    }
}