Wheeltab

Switch tabs using your mouse wheel.

¿Qué es Wheeltab?

Wheeltab es una extensión de Chrome desarrollada por Mat, y su función principal es "Switch tabs using your mouse wheel.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Wheeltab

Descarga archivos de extensión Wheeltab en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
URL Oficial https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Descripción Switch tabs using your mouse wheel.
Tamaño del Archivo 11.09 KB
Cantidad de Instalaciones 253
Versión Actual 0.0.4
Última Actualización 2022-04-18
Fecha de Publicación 2016-05-27
Calificación 1.75/5 Total de 8 Calificaciones
Desarrollador Mat
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/matco/wheeltab
URL de la Página de Ayuda https://github.com/matco/wheeltab
Idiomas Soportados 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"
    }
}