Sort Hangouts Tab in GMail

Sort Hangout Contacts in GMail

Was ist Sort Hangouts Tab in GMail?

Sort Hangouts Tab in GMail ist eine Chrome-Erweiterung, die von Eddy Luten entwickelt wurde, und ihr Hauptmerkmal ist "Sort Hangout Contacts in GMail".

Sort Hangouts Tab in GMail-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sort Hangouts Tab in GMail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Sort Hangouts Tab in GMail Sort Hangouts Tab in GMail
ID kidpfddmdpkgilenchiaeehgfilnhapf
Offizielle URL https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf
Beschreibung Sort Hangout Contacts in GMail
Dateigröße 4.68 KB
Installationsanzahl 11
Aktuelle Version 0.1
Letztes Update 2018-07-03
Veröffentlichungsdatum 2018-07-03
Entwickler Eddy Luten
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}