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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
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" } ] } |