Wheeltab

Switch tabs using your mouse wheel.

Was ist Wheeltab?

Wheeltab ist eine Chrome-Erweiterung, die von Mat entwickelt wurde, und ihr Hauptmerkmal ist "Switch tabs using your mouse wheel.".

Erweiterungsscreenshots

screenshot

Wheeltab-Erweiterungs-CRX-Datei herunterladen

Laden Sie Wheeltab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
Offizielle URL https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Beschreibung Switch tabs using your mouse wheel.
Dateigröße 11.09 KB
Installationsanzahl 253
Aktuelle Version 0.0.4
Letztes Update 2022-04-18
Veröffentlichungsdatum 2016-05-27
Bewertung 1.75/5 Insgesamt 8 Bewertungen
Entwickler Mat
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/matco/wheeltab
Hilfeseite URL https://github.com/matco/wheeltab
Unterstützte Sprachen 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"
    }
}