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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}