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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}