Tab Switcher

Switch tabs using ctrl+shift+z and ctrl+shift+x.

O que é Tab Switcher?

Tab Switcher é uma extensão do Chrome desenvolvida por Ian Ellison-Taylor, e sua principal característica é "Switch tabs using ctrl+shift+z and ctrl+shift+x.".

Baixar o arquivo CRX da Extensão Tab Switcher

Baixe arquivos de extensão Tab Switcher 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

                        Allows you to switch tabs using Ctrl+Shift+Z and Ctrl+Shift+X                    

Informações Básicas da Extensão

Nome Tab Switcher Tab Switcher
ID fkpmobfddeinmclggkjaodhijbaohpoe
URL Oficial https://chrome.google.com/webstore/detail/tab-switcher/fkpmobfddeinmclggkjaodhijbaohpoe
Descrição Switch tabs using ctrl+shift+z and ctrl+shift+x.
Tamanho do Arquivo 3.07 KB
Contagem de Instalações 34
Versão Atual 0.1
Última Atualização 2013-02-21
Data de Publicação 2013-02-21
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Ian Ellison-Taylor
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Switcher",
    "version": "0.1",
    "description": "Switch tabs using ctrl+shift+z and ctrl+shift+x.",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "previous-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Z"
            },
            "description": "Previous Tab"
        },
        "next-tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Next Tab"
        }
    }
}