Sort Hangouts Tab in GMail

Sort Hangout Contacts in GMail

Co je Sort Hangouts Tab in GMail?

Sort Hangouts Tab in GMail je rozšíření Chrome vyvinuté Eddy Luten, a jeho hlavní funkcí je „Sort Hangout Contacts in GMail“.

Stáhnout soubor CRX rozšíření Sort Hangouts Tab in GMail

Stáhněte si soubory rozšíření Sort Hangouts Tab in GMail ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Sort Hangouts Tab in GMail Sort Hangouts Tab in GMail
ID kidpfddmdpkgilenchiaeehgfilnhapf
Oficiální URL https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf
Popis Sort Hangout Contacts in GMail
Velikost souboru 4.68 KB
Počet instalací 11
Aktuální Verze 0.1
Poslední Aktualizace 2018-07-03
Datum Vydání 2018-07-03
Vývojář Eddy Luten
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}