Mousetures

Mouse and rocker gestures for tab switching, closing, and reloading

Qu'est-ce que Mousetures ?

Mousetures est une extension Chrome développée par Dan Wendorf, et sa fonction principale est "Mouse and rocker gestures for tab switching, closing, and reloading".

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

Téléchargez les fichiers d'extension Mousetures 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

                        Close, refresh, and switch tabs with simple mouse gestures.

To close, hold the right mouse button, drag down, and release.
To refresh, hold the right mouse button, drag down then up, and release.

Switch tabs using mouse rocker gestures. To switch to the tab to the right of your current tab, hold the left mouse button and right-click. To switch to the tab to the left of your current tab, hold the right mouse button and left-click. To cycle through multiple tabs, keep holding the mouse button, and click repeatedly.                    

Informations de Base sur l'Extension

Nom Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
URL Officiel https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Description Mouse and rocker gestures for tab switching, closing, and reloading
Taille du Fichier 9.03 KB
Nombre d'Installations 36
Version Actuelle 0.7.0
Dernière Mise à Jour 2015-05-24
Date de Publication 2015-05-24
Évaluation 4.17/5 Total 6 Évaluations
Développeur Dan Wendorf
Type de Paiement free
Site Web de l'Extension https://github.com/wendorf/mousetures
URL de la Page d'Aide https://github.com/wendorf/mousetures/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mousetures",
    "description": "Mouse and rocker gestures for tab switching, closing, and reloading",
    "version": "0.7.0",
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "actions.js",
            "background.js",
            "upgradeContentScripts.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "mouseEventGroup.js",
                "point.js",
                "moveGestures.js",
                "main.js",
                "upgradeContentScriptHelper.js",
                "gestureHandler.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}