Sort Hangouts Tab in GMail

Sort Hangout Contacts in GMail

Sort Hangouts Tab in GMail क्या है?

Sort Hangouts Tab in GMail Eddy Luten द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sort Hangout Contacts in GMail"।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sort Hangouts Tab in GMail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Sort Hangouts Tab in GMail Sort Hangouts Tab in GMail
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"
            ]
        }
    ]
}