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ファイルをダウンロード
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
拡張機能の基本情報
名前 | ![]() |
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 |
Eメール | [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" ] } ] } |