Hangouts with Tab Key

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

Was ist Hangouts with Tab Key?

Hangouts with Tab Key ist eine Chrome-Erweiterung, die von Danny Bousleiman entwickelt wurde, und ihr Hauptmerkmal ist "This extension lets you use the tab key to cycle through your Google Hangout windows".

Hangouts with Tab Key-Erweiterungs-CRX-Datei herunterladen

Laden Sie Hangouts with Tab Key-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Hangouts with Tab Key Hangouts with Tab Key
ID hmheoijjmglfngclealeoibpgfeildjl
Offizielle URL https://chrome.google.com/webstore/detail/hangouts-with-tab-key/hmheoijjmglfngclealeoibpgfeildjl
Beschreibung This extension lets you use the tab key to cycle through your Google Hangout windows
Dateigröße 9.32 KB
Installationsanzahl 96
Aktuelle Version 1.0
Letztes Update 2015-05-30
Veröffentlichungsdatum 2015-05-30
Bewertung 2.00/5 Insgesamt 4 Bewertungen
Entwickler Danny Bousleiman
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}