Hangouts with Tab Key

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

Hangouts with Tab Keyとは何ですか?

Hangouts with Tab KeyはDanny Bousleimanによって開発されたChromeの拡張機能で、その主な機能は「This extension lets you use the tab key to cycle through your Google Hangout windows」です。

Hangouts with Tab Key拡張機能のCRXファイルをダウンロード

Hangouts with Tab Key拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Hangouts with Tab Key Hangouts with Tab Key
ID hmheoijjmglfngclealeoibpgfeildjl
公式URL https://chrome.google.com/webstore/detail/hangouts-with-tab-key/hmheoijjmglfngclealeoibpgfeildjl
説明 This extension lets you use the tab key to cycle through your Google Hangout windows
ファイルサイズ 9.32 KB
インストール数 96
現在のバージョン 1.0
最終更新日 2015-05-30
公開日 2015-05-30
評価 2.00/5 合計 4 レビュー
開発者 Danny Bousleiman
支払い方法 free
対応言語 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"
        }
    ]
}