Hangouts with Tab Key

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

What is Hangouts with Tab Key?

Hangouts with Tab Key is a Chrome extension developed by Danny Bousleiman, and its main feature is "This extension lets you use the tab key to cycle through your Google Hangout windows".

Download Hangouts with Tab Key Extension CRX File

Download Hangouts with Tab Key extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Hangouts with Tab Key Hangouts with Tab Key
ID hmheoijjmglfngclealeoibpgfeildjl
Official URL https://chrome.google.com/webstore/detail/hangouts-with-tab-key/hmheoijjmglfngclealeoibpgfeildjl
Description This extension lets you use the tab key to cycle through your Google Hangout windows
File Size 9.32 KB
Installation Count 96
Current Version 1.0
Last Updated 2015-05-30
Publish Date 2015-05-30
Rating 2.00/5 Total 4 Ratings
Developer Danny Bousleiman
Payment Type free
Supported Languages 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"
        }
    ]
}