Google Chat Smart Order

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

What is Google Chat Smart Order?

Google Chat Smart Order is a Chrome extension developed by https://colbywoods.dev, and its main feature is "Automatically orders your chats and rooms based on last message time and room pinning".

Extension Screenshots

screenshot

Download Google Chat Smart Order Extension CRX File

Download Google Chat Smart Order extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
Official URL https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
Description Automatically orders your chats and rooms based on last message time and room pinning
File Size 10.97 KB
Installation Count 521
Current Version 1.0.0
Last Updated 2023-03-16
Publish Date 2021-07-18
Rating 4.25/5 Total 4 Ratings
Developer https://colbywoods.dev
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}