Sort Hangouts Tab in GMail
Sort Hangout Contacts in GMail
O que é Sort Hangouts Tab in GMail?
Sort Hangouts Tab in GMail é uma extensão do Chrome desenvolvida por Eddy Luten, e sua principal característica é "Sort Hangout Contacts in GMail".
Baixar o arquivo CRX da Extensão Sort Hangouts Tab in GMail
Baixe arquivos de extensão Sort Hangouts Tab in GMail no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | ![]() |
ID | kidpfddmdpkgilenchiaeehgfilnhapf |
URL Oficial | https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf |
Descrição | Sort Hangout Contacts in GMail |
Tamanho do Arquivo | 4.68 KB |
Contagem de Instalações | 11 |
Versão Atual | 0.1 |
Última Atualização | 2018-07-03 |
Data de Publicação | 2018-07-03 |
Desenvolvedor | Eddy Luten |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |