Wheeltab

Switch tabs using your mouse wheel.

Co je Wheeltab?

Wheeltab je rozšíření Chrome vyvinuté Mat, a jeho hlavní funkcí je „Switch tabs using your mouse wheel.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Wheeltab

Stáhněte si soubory rozšíření Wheeltab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
Oficiální URL https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Popis Switch tabs using your mouse wheel.
Velikost souboru 11.09 KB
Počet instalací 253
Aktuální Verze 0.0.4
Poslední Aktualizace 2022-04-18
Datum Vydání 2016-05-27
Hodnocení 1.75/5 Celkem 8 Hodnocení
Vývojář Mat
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/matco/wheeltab
URL Stránky Nápovědy https://github.com/matco/wheeltab
Podporované Jazyky 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"
    }
}