Google Chat Smart Order

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

Cos'è Google Chat Smart Order?

Google Chat Smart Order è un'estensione di Chrome sviluppata da https://colbywoods.dev, e la sua funzione principale è "Automatically orders your chats and rooms based on last message time and room pinning".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Chat Smart Order

Scarica i file di estensione Google Chat Smart Order in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
URL Ufficiale https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
Descrizione Automatically orders your chats and rooms based on last message time and room pinning
Dimensione del File 10.97 KB
Conteggio Installazioni 521
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-03-16
Data di Pubblicazione 2021-07-18
Valutazione 4.25/5 Totale 4 Valutazioni
Sviluppatore https://colbywoods.dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}