Sort the Meet
Show yourself in alphabetical order in participants list
Sort the Meetとは何ですか?
Sort the Meetはelizaveta.shashkovaによって開発されたChromeの拡張機能で、その主な機能は「Show yourself in alphabetical order in participants list」です。
拡張機能のスクリーンショット
Sort the Meet拡張機能のCRXファイルをダウンロード
Sort the Meet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
By default, when you open a list of participants in Google Meet, all the participants are shown in alphabetical order except of you. You're always shown on top of the list and it's hard to understand when is your turn to speak. Sort the Meet extension solves this problem and shows you not on top of the list, but in the correct alphabetical position.
拡張機能の基本情報
名前 | Sort the Meet |
ID | dokbaedihaiifdlfgbeillibkpngoikg |
公式URL | https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg |
説明 | Show yourself in alphabetical order in participants list |
ファイルサイズ | 58.11 KB |
インストール数 | 262 |
現在のバージョン | 1.2 |
最終更新日 | 2023-12-22 |
公開日 | 2021-09-25 |
評価 | 4.67/5 合計 6 レビュー |
開発者 | elizaveta.shashkova |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sort the Meet", "description": "Show yourself in alphabetical order in participants list", "version": "1.2", "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "js\/inject.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "16": "icons\/sort16.png", "48": "icons\/sort48.png", "128": "icons\/sort128.png" }, "browser_action": { "default_icon": "icons\/sort48.png" }, "web_accessible_resources": [ "js\/sort-users.js" ], "manifest_version": 2 } |