Google Chat Smart Order

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

Что такое Google Chat Smart Order?

Google Chat Smart Order - это расширение Chrome, разработанное https://colbywoods.dev, и его основная функция - "Automatically orders your chats and rooms based on last message time and room pinning".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Google Chat Smart Order

Скачайте файлы расширений Google Chat Smart Order в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
Официальный URL https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
Описание Automatically orders your chats and rooms based on last message time and room pinning
Размер файла 10.97 KB
Количество установок 521
Текущая Версия 1.0.0
Последнее Обновление 2023-03-16
Дата публикации 2021-07-18
Рейтинг 4.25/5 Всего 4 оценок
Разработчик https://colbywoods.dev
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
        }
    ]
}