Google Chat Smart Order

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

Was ist Google Chat Smart Order?

Google Chat Smart Order ist eine Chrome-Erweiterung, die von https://colbywoods.dev entwickelt wurde, und ihr Hauptmerkmal ist "Automatically orders your chats and rooms based on last message time and room pinning".

Erweiterungsscreenshots

screenshot

Google Chat Smart Order-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Chat Smart Order-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
Offizielle URL https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
Beschreibung Automatically orders your chats and rooms based on last message time and room pinning
Dateigröße 10.97 KB
Installationsanzahl 521
Aktuelle Version 1.0.0
Letztes Update 2023-03-16
Veröffentlichungsdatum 2021-07-18
Bewertung 4.25/5 Insgesamt 4 Bewertungen
Entwickler https://colbywoods.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}