Sort Hangouts Tab in GMail
Sort Hangout Contacts in GMail
Vad är Sort Hangouts Tab in GMail?
Sort Hangouts Tab in GMail är en Chrome-tillägg utvecklad av Eddy Luten, och dess huvudfunktion är "Sort Hangout Contacts in GMail".
Ladda ner Sort Hangouts Tab in GMail-förlängningens CRX-fil
Ladda ner Sort Hangouts Tab in GMail-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | ![]() |
ID | kidpfddmdpkgilenchiaeehgfilnhapf |
Officiell webbadress | https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf |
Beskrivning | Sort Hangout Contacts in GMail |
Filstorlek | 4.68 KB |
Antal Installationer | 11 |
Aktuell Version | 0.1 |
Senast Uppdaterad | 2018-07-03 |
Publiceringsdatum | 2018-07-03 |
Utvecklare | Eddy Luten |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |