Sort Hangouts Tab in GMail

Sort Hangout Contacts in GMail

What is Sort Hangouts Tab in GMail?

Sort Hangouts Tab in GMail is a Chrome extension developed by Eddy Luten, and its main feature is "Sort Hangout Contacts in GMail".

Download Sort Hangouts Tab in GMail Extension CRX File

Download Sort Hangouts Tab in GMail extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Sort Hangouts Tab in GMail Sort Hangouts Tab in GMail
ID kidpfddmdpkgilenchiaeehgfilnhapf
Official URL https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf
Description Sort Hangout Contacts in GMail
File Size 4.68 KB
Installation Count 11
Current Version 0.1
Last Updated 2018-07-03
Publish Date 2018-07-03
Developer Eddy Luten
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}