Sort Hangouts Tab in GMail
Sort Hangout Contacts in GMail
Τι είναι το Sort Hangouts Tab in GMail;
Το Sort Hangouts Tab in GMail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Eddy Luten, και η κύρια λειτουργία του είναι "Sort Hangout Contacts in GMail".
Λήψη αρχείου CRX της επέκτασης Sort Hangouts Tab in GMail
Λήψη αρχείων επέκτασης Sort Hangouts Tab in GMail σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | ![]() |
ID | kidpfddmdpkgilenchiaeehgfilnhapf |
Επίσημο URL | https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf |
Περιγραφή | Sort Hangout Contacts in GMail |
Μέγεθος Αρχείου | 4.68 KB |
Αριθμός Εγκαταστάσεων | 11 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2018-07-03 |
Ημερομηνία Δημοσίευσης | 2018-07-03 |
Προγραμματιστής | Eddy Luten |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |