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 |
电子邮箱 | [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" ] } ] } |