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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Danny Bousleiman และคุณลักษณะหลักของมันคือ "This extension lets you use the tab key to cycle through your Google Hangout windows"

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hangouts with Tab Key

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}