Wheeltab

Switch tabs using your mouse wheel.

Qu'est-ce que Wheeltab ?

Wheeltab est une extension Chrome développée par Mat, et sa fonction principale est "Switch tabs using your mouse wheel.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Wheeltab

Téléchargez les fichiers d'extension Wheeltab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Wheeltab Wheeltab
ID acipnfeildejkaebclgfajogkmilgldh
URL Officiel https://chromewebstore.google.com/detail/wheeltab/acipnfeildejkaebclgfajogkmilgldh
Description Switch tabs using your mouse wheel.
Taille du Fichier 11.09 KB
Nombre d'Installations 253
Version Actuelle 0.0.4
Dernière Mise à Jour 2022-04-18
Date de Publication 2016-05-27
Évaluation 1.75/5 Total 8 Évaluations
Développeur Mat
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/matco/wheeltab
URL de la Page d'Aide https://github.com/matco/wheeltab
Langues Prises en Charge 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"
    }
}