Sort the Meet
Show yourself in alphabetical order in participants list
Qu'est-ce que Sort the Meet ?
Sort the Meet est une extension Chrome développée par elizaveta.shashkova, et sa fonction principale est "Show yourself in alphabetical order in participants list".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sort the Meet
Téléchargez les fichiers d'extension Sort the Meet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Sort the Meet |
ID | dokbaedihaiifdlfgbeillibkpngoikg |
URL Officiel | https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg |
Description | Show yourself in alphabetical order in participants list |
Taille du Fichier | 58.11 KB |
Nombre d'Installations | 262 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2023-12-22 |
Date de Publication | 2021-09-25 |
Évaluation | 4.67/5 Total 6 Évaluations |
Développeur | elizaveta.shashkova |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html |
Langues Prises en Charge | 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 } |