Google Chat Smart Order

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

Hvad er Google Chat Smart Order?

Google Chat Smart Order er en Chrome-udvidelse udviklet af https://colbywoods.dev, og dens hovedfunktion er "Automatically orders your chats and rooms based on last message time and room pinning".

Udvidelsesskærmbilleder

screenshot

Download Google Chat Smart Order-udvidelses-CRX-fil

Download Google Chat Smart Order-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Google Chat Smart Order Google Chat Smart Order
ID ojapallmnallikphlgkcpfimhjpngfcm
Officiel URL https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm
Beskrivelse Automatically orders your chats and rooms based on last message time and room pinning
Filstørrelse 10.97 KB
Antal Installationer 521
Nuværende Version 1.0.0
Senest Opdateret 2023-03-16
Udgivelsesdato 2021-07-18
Bedømmelse 4.25/5 Samlet 4 Bedømmelser
Udvikler https://colbywoods.dev
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}