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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension lets you use the tab key to cycle through your Google Hangout windows"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hangouts with Tab Key एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } ] } |