Google Chat Smart Order

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

O que é Google Chat Smart Order?

Google Chat Smart Order é uma extensão do Chrome desenvolvida por https://colbywoods.dev, e sua principal característica é "Automatically orders your chats and rooms based on last message time and room pinning".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Google Chat Smart Order

Baixe arquivos de extensão Google Chat Smart Order no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
URL Oficial https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
Descrição Automatically orders your chats and rooms based on last message time and room pinning
Tamanho do Arquivo 10.97 KB
Contagem de Instalações 521
Versão Atual 1.0.0
Última Atualização 2023-03-16
Data de Publicação 2021-07-18
Classificação 4.25/5 Total de 4 Avaliações
Desenvolvedor https://colbywoods.dev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}