Google Chat Smart Order

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

¿Qué es Google Chat Smart Order?

Google Chat Smart Order es una extensión de Chrome desarrollada por https://colbywoods.dev, y su función principal es "Automatically orders your chats and rooms based on last message time and room pinning".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Google Chat Smart Order

Descarga archivos de extensión Google Chat Smart Order en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
URL Oficial https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
Descripción Automatically orders your chats and rooms based on last message time and room pinning
Tamaño del Archivo 10.97 KB
Cantidad de Instalaciones 521
Versión Actual 1.0.0
Última Actualización 2023-03-16
Fecha de Publicación 2021-07-18
Calificación 4.25/5 Total de 4 Calificaciones
Desarrollador https://colbywoods.dev
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}