Sort Hangouts Tab in GMail
Sort Hangout Contacts in GMail
Qu'est-ce que Sort Hangouts Tab in GMail ?
Sort Hangouts Tab in GMail est une extension Chrome développée par Eddy Luten, et sa fonction principale est "Sort Hangout Contacts in GMail".
Télécharger le fichier CRX de l'extension Sort Hangouts Tab in GMail
Téléchargez les fichiers d'extension Sort Hangouts Tab in GMail 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
This Google Chrome Extension sorts the Google Hangout Conversations tab in GMail by the status of the contact. While the Hangout Contacts tab can be sorted by online status, it does not display Hangout conversations. This extension adds a sort order of: * Online contacts at the top * Hangouts in the middle * Offline contacts at the bottom, sorted from A-Z This Open Source Software is released under the MIT License. The source code for this program can be found at: https://github.com/EddyLuten/sort-hangouts
Informations de Base sur l'Extension
Nom | ![]() |
ID | kidpfddmdpkgilenchiaeehgfilnhapf |
URL Officiel | https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf |
Description | Sort Hangout Contacts in GMail |
Taille du Fichier | 4.68 KB |
Nombre d'Installations | 11 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2018-07-03 |
Date de Publication | 2018-07-03 |
Développeur | Eddy Luten |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sort Hangouts Tab in GMail", "description": "Sort Hangout Contacts in GMail", "version": "0.1", "homepage_url": "https:\/\/github.com\/EddyLuten\/sort-hangouts", "permissions": [ "storage", "activeTab" ], "content_scripts": [ { "all_frames": true, "run_at": "document_start", "matches": [ "*:\/\/hangouts.google.com\/webchat\/*\/frame2*" ], "js": [ "content.js" ] } ] } |