Hangouts with Tab Key

This extension lets you use the tab key to cycle through your Google Hangout windows

O que é Hangouts with Tab Key?

Hangouts with Tab Key é uma extensão do Chrome desenvolvida por Danny Bousleiman, e sua principal característica é "This extension lets you use the tab key to cycle through your Google Hangout windows".

Baixar o arquivo CRX da Extensão Hangouts with Tab Key

Baixe arquivos de extensão Hangouts with Tab Key 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

                        Have you ever used hangouts in gmail and tried to hit the tab key to switch between chats only to find some other button is highlighted?  Well fear no more!  

This extension enables the tab key to switch between hangout windows flawlessly!  Now you can quickly respond to multiple chat windows by using the tab key to switch focus!  

You can even cycle backwards with shift + tab. AMAZING!

Currently, only gmail and inbox are supported.                    

Informações Básicas da Extensão

Nome Hangouts with Tab Key Hangouts with Tab Key
ID hmheoijjmglfngclealeoibpgfeildjl
URL Oficial https://chrome.google.com/webstore/detail/hangouts-with-tab-key/hmheoijjmglfngclealeoibpgfeildjl
Descrição This extension lets you use the tab key to cycle through your Google Hangout windows
Tamanho do Arquivo 9.32 KB
Contagem de Instalações 96
Versão Atual 1.0
Última Atualização 2015-05-30
Data de Publicação 2015-05-30
Classificação 2.00/5 Total de 4 Avaliações
Desenvolvedor Danny Bousleiman
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hangouts with Tab Key",
    "description": "This extension lets you use the tab key to cycle through your Google Hangout windows",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "host-site.js"
            ]
        },
        {
            "matches": [
                "https:\/\/talkgadget.google.com\/*"
            ],
            "all_frames": true,
            "js": [
                "hangout-window.js"
            ],
            "run_at": "document_end"
        }
    ]
}