Hangouts with Tab Key
This extension lets you use the tab key to cycle through your Google Hangout windows
Qu'est-ce que Hangouts with Tab Key ?
Hangouts with Tab Key est une extension Chrome développée par Danny Bousleiman, et sa fonction principale est "This extension lets you use the tab key to cycle through your Google Hangout windows".
Télécharger le fichier CRX de l'extension Hangouts with Tab Key
Téléchargez les fichiers d'extension Hangouts with Tab Key au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | hmheoijjmglfngclealeoibpgfeildjl |
URL Officiel | https://chrome.google.com/webstore/detail/hangouts-with-tab-key/hmheoijjmglfngclealeoibpgfeildjl |
Description | This extension lets you use the tab key to cycle through your Google Hangout windows |
Taille du Fichier | 9.32 KB |
Nombre d'Installations | 96 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2015-05-30 |
Date de Publication | 2015-05-30 |
Évaluation | 2.00/5 Total 4 Évaluations |
Développeur | Danny Bousleiman |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |