Google Chat Smart Order
Automatically orders your chats and rooms based on last message time and room pinning
Vad är Google Chat Smart Order?
Google Chat Smart Order är en Chrome-tillägg utvecklad av https://colbywoods.dev, och dess huvudfunktion är "Automatically orders your chats and rooms based on last message time and room pinning".
Tilläggsskärmbilder
Ladda ner Google Chat Smart Order-förlängningens CRX-fil
Ladda ner Google Chat Smart Order-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Google Chat Smart Order |
ID | ojapallmnallikphlgkcpfimhjpngfcm |
Officiell webbadress | https://chromewebstore.google.com/detail/google-chat-smart-order/ojapallmnallikphlgkcpfimhjpngfcm |
Beskrivning | Automatically orders your chats and rooms based on last message time and room pinning |
Filstorlek | 10.97 KB |
Antal Installationer | 521 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2023-03-16 |
Publiceringsdatum | 2021-07-18 |
Betyg | 4.25/5 Totalt 4 Betyg |
Utvecklare | https://colbywoods.dev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } ] } |