Sort the Meet
Show yourself in alphabetical order in participants list
What is Sort the Meet?
Sort the Meet is a Chrome extension developed by elizaveta.shashkova, and its main feature is "Show yourself in alphabetical order in participants list".
Extension Screenshots
Download Sort the Meet Extension CRX File
Download Sort the Meet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Sort the Meet |
ID | dokbaedihaiifdlfgbeillibkpngoikg |
Official URL | https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg |
Description | Show yourself in alphabetical order in participants list |
File Size | 58.11 KB |
Installation Count | 262 |
Current Version | 1.2 |
Last Updated | 2023-12-22 |
Publish Date | 2021-09-25 |
Rating | 4.67/5 Total 6 Ratings |
Developer | elizaveta.shashkova |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html |
Supported Languages | 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 } |