Google Chat Smart Order

Automatically orders your chats and rooms based on last message time and room pinning

什么是Google Chat Smart Order?

Google Chat Smart Order是由https://colbywoods.dev开发的Chrome扩展程序,该扩展的主要功能是“Automatically orders your chats and rooms based on last message time and room pinning”。

扩展截图

screenshot

下载Google Chat Smart Order扩展crx文件

下载Google Chat Smart Order扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This Google Chat extension was created to order your Rooms and Chats in an intuitive way. See all your notifications at the top of the room or chat list rather than mixed throughout.

This extension automatically orders your rooms and chats as follows:

Pinned rooms with unread notifications ordered by last message received ordered most recent to least.
Unpinned rooms with unread notifications ordered by last message received ordered most recent to least.
Pinned rooms with no notifications ordered by last message received ordered most recent to least. 
Unpinned rooms with no notifications ordered by last message received ordered most recent to least.                    

扩展基本信息

名称 Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
官方URL https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
简介 Automatically orders your chats and rooms based on last message time and room pinning
文件大小 10.97 KB
安装次数 521
当前版本 1.0.0
更新时间 2023-03-16
上架时间 2021-07-18
评分 4.25/5 共4次评分
开发者 https://colbywoods.dev
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Chat Smart Order",
    "description": "Automatically orders your chats and rooms based on last message time and room pinning",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.google.com\/*",
                "https:\/\/mail.google.com\/chat\/*"
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}