Mousetures

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

O que é Mousetures?

Mousetures é uma extensão do Chrome desenvolvida por Dan Wendorf, e sua principal característica é "Mouse and rocker gestures for tab switching, closing, and reloading".

Baixar o arquivo CRX da Extensão Mousetures

Baixe arquivos de extensão Mousetures no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Mousetures Mousetures
ID fadopffbmckhlapnajkgbgldgpcebfid
URL Oficial https://chrome.google.com/webstore/detail/mousetures/fadopffbmckhlapnajkgbgldgpcebfid
Descrição Mouse and rocker gestures for tab switching, closing, and reloading
Tamanho do Arquivo 9.03 KB
Contagem de Instalações 36
Versão Atual 0.7.0
Última Atualização 2015-05-24
Data de Publicação 2015-05-24
Classificação 4.17/5 Total de 6 Avaliações
Desenvolvedor Dan Wendorf
Tipo de Pagamento free
Site da Extensão https://github.com/wendorf/mousetures
URL da Página de Ajuda https://github.com/wendorf/mousetures/issues
Idiomas Suportados 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
    }
}