Google Chat Smart Order

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

Co to jest Google Chat Smart Order?

Google Chat Smart Order to rozszerzenie Chrome opracowane przez https://colbywoods.dev, a jego główną funkcją jest „Automatically orders your chats and rooms based on last message time and room pinning”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Chat Smart Order

Pobierz pliki rozszerzeń Google Chat Smart Order w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
Oficjalny URL https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
Opis Automatically orders your chats and rooms based on last message time and room pinning
Rozmiar pliku 10.97 KB
Liczba instalacji 521
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-03-16
Data Publikacji 2021-07-18
Ocena 4.25/5 Łącznie 4 Oceny
Deweloper https://colbywoods.dev
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}