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
官方網址 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"
        }
    ]
}