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はhttps://colbywoods.devによって開発されたChromeの拡張機能で、その主な機能は「Automatically orders your chats and rooms based on last message time and room pinning」です。
拡張機能のスクリーンショット
Google Chat Smart Order拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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" } ] } |