Sort the Meet
Show yourself in alphabetical order in participants list
O que é Sort the Meet?
Sort the Meet é uma extensão do Chrome desenvolvida por elizaveta.shashkova, e sua principal característica é "Show yourself in alphabetical order in participants list".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sort the Meet
Baixe arquivos de extensão Sort the Meet no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Sort the Meet |
ID | dokbaedihaiifdlfgbeillibkpngoikg |
URL Oficial | https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg |
Descrição | Show yourself in alphabetical order in participants list |
Tamanho do Arquivo | 58.11 KB |
Contagem de Instalações | 262 |
Versão Atual | 1.2 |
Última Atualização | 2023-12-22 |
Data de Publicação | 2021-09-25 |
Classificação | 4.67/5 Total de 6 Avaliações |
Desenvolvedor | elizaveta.shashkova |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html |
Idiomas Suportados | 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 } |