Sort the Meet
Show yourself in alphabetical order in participants list
¿Qué es Sort the Meet?
Sort the Meet es una extensión de Chrome desarrollada por elizaveta.shashkova, y su función principal es "Show yourself in alphabetical order in participants list".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Sort the Meet
Descarga archivos de extensión Sort the Meet en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Sort the Meet |
ID | dokbaedihaiifdlfgbeillibkpngoikg |
URL Oficial | https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg |
Descripción | Show yourself in alphabetical order in participants list |
Tamaño del Archivo | 58.11 KB |
Cantidad de Instalaciones | 262 |
Versión Actual | 1.2 |
Última Actualización | 2023-12-22 |
Fecha de Publicación | 2021-09-25 |
Calificación | 4.67/5 Total de 6 Calificaciones |
Desarrollador | elizaveta.shashkova |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html |
Idiomas Soportados | 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 } |