Mousetures

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

¿Qué es Mousetures?

Mousetures es una extensión de Chrome desarrollada por Dan Wendorf, y su función principal es "Mouse and rocker gestures for tab switching, closing, and reloading".

Descargar Archivo CRX de la Extensión Mousetures

Descarga archivos de extensión Mousetures 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

                        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.                    

Información Básica de la Extensión

Nombre Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
URL Oficial https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Descripción Mouse and rocker gestures for tab switching, closing, and reloading
Tamaño del Archivo 9.03 KB
Cantidad de Instalaciones 36
Versión Actual 0.7.0
Última Actualización 2015-05-24
Fecha de Publicación 2015-05-24
Calificación 4.17/5 Total de 6 Calificaciones
Desarrollador Dan Wendorf
Tipo de Pago free
Sitio Web de la Extensión https://github.com/wendorf/mousetures
URL de la Página de Ayuda https://github.com/wendorf/mousetures/issues
Idiomas Soportados 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
    }
}