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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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