Hangouts with Tab Key

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

Hangouts with Tab Key là gì?

Hangouts with Tab Key là một tiện ích mở rộng Chrome được phát triển bởi Danny Bousleiman, và tính năng chính của nó là "This extension lets you use the tab key to cycle through your Google Hangout windows".

Tải xuống tệp CRX của tiện ích mở rộng Hangouts with Tab Key

Tải xuống các tệp mở rộng Hangouts with Tab Key dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hangouts with Tab Key Hangouts with Tab Key
ID hmheoijjmglfngclealeoibpgfeildjl
URL Chính Thức https://chrome.google.com/webstore/detail/hangouts-with-tab-key/hmheoijjmglfngclealeoibpgfeildjl
Mô tả This extension lets you use the tab key to cycle through your Google Hangout windows
Kích Thước Tệp 9.32 KB
Số Lần Cài Đặt 96
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-05-30
Ngày Phát Hành 2015-05-30
Đánh Giá 2.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Danny Bousleiman
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}