Sort Hangouts Tab in GMail
Sort Hangout Contacts in GMail
Sort Hangouts Tab in GMail là gì?
Sort Hangouts Tab in GMail là một tiện ích mở rộng Chrome được phát triển bởi Eddy Luten, và tính năng chính của nó là "Sort Hangout Contacts in GMail".
Tải xuống tệp CRX của tiện ích mở rộng Sort Hangouts Tab in GMail
Tải xuống các tệp mở rộng Sort Hangouts Tab in GMail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | kidpfddmdpkgilenchiaeehgfilnhapf |
URL Chính Thức | https://chrome.google.com/webstore/detail/sort-hangouts-tab-in-gmai/kidpfddmdpkgilenchiaeehgfilnhapf |
Mô tả | Sort Hangout Contacts in GMail |
Kích Thước Tệp | 4.68 KB |
Số Lần Cài Đặt | 11 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2018-07-03 |
Ngày Phát Hành | 2018-07-03 |
Nhà Phát Triển | Eddy Luten |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |