Wheeltab

Switch tabs using your mouse wheel.

Hvad er Wheeltab?

Wheeltab er en Chrome-udvidelse udviklet af Mat, og dens hovedfunktion er "Switch tabs using your mouse wheel.".

Udvidelsesskærmbilleder

screenshot

Download Wheeltab-udvidelses-CRX-fil

Download Wheeltab-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
Officiel URL https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Beskrivelse Switch tabs using your mouse wheel.
Filstørrelse 11.09 KB
Antal Installationer 253
Nuværende Version 0.0.4
Senest Opdateret 2022-04-18
Udgivelsesdato 2016-05-27
Bedømmelse 1.75/5 Samlet 8 Bedømmelser
Udvikler Mat
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/matco/wheeltab
Hjælpeside-URL https://github.com/matco/wheeltab
Understøttede Sprog 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"
    }
}