Sort Hangouts Tab in GMail
Sort Hangout Contacts in GMail
Cos'è Sort Hangouts Tab in GMail?
Sort Hangouts Tab in GMail è un'estensione di Chrome sviluppata da Eddy Luten, e la sua funzione principale è "Sort Hangout Contacts in GMail".
Scarica il file CRX dell'estensione Sort Hangouts Tab in GMail
Scarica i file di estensione Sort Hangouts Tab in GMail in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | kidpfddmdpkgilenchiaeehgfilnhapf |
URL Ufficiale | https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf |
Descrizione | Sort Hangout Contacts in GMail |
Dimensione del File | 4.68 KB |
Conteggio Installazioni | 11 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2018-07-03 |
Data di Pubblicazione | 2018-07-03 |
Sviluppatore | Eddy Luten |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |