Mousetures

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

Cos'è Mousetures?

Mousetures è un'estensione di Chrome sviluppata da Dan Wendorf, e la sua funzione principale è "Mouse and rocker gestures for tab switching, closing, and reloading".

Scarica il file CRX dell'estensione Mousetures

Scarica i file di estensione Mousetures in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
URL Ufficiale https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Descrizione Mouse and rocker gestures for tab switching, closing, and reloading
Dimensione del File 9.03 KB
Conteggio Installazioni 36
Versione Corrente 0.7.0
Ultimo Aggiornamento 2015-05-24
Data di Pubblicazione 2015-05-24
Valutazione 4.17/5 Totale 6 Valutazioni
Sviluppatore Dan Wendorf
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/wendorf/mousetures
URL della Pagina di Aiuto https://github.com/wendorf/mousetures/issues
Lingue Supportate 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
    }
}