Sort Hangouts Tab in GMail

Sort Hangout Contacts in GMail

Sort Hangouts Tab in GMail란 무엇입니까?

Sort Hangouts Tab in GMail은(는) Eddy Luten에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sort Hangout Contacts in GMail"입니다.

Sort Hangouts Tab in GMail 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}