Sort the Meet

Show yourself in alphabetical order in participants list

Cos'è Sort the Meet?

Sort the Meet è un'estensione di Chrome sviluppata da elizaveta.shashkova, e la sua funzione principale è "Show yourself in alphabetical order in participants list".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sort the Meet

Scarica i file di estensione Sort the Meet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Sort the Meet Sort the Meet
ID dokbaedihaiifdlfgbeillibkpngoikg
URL Ufficiale https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg
Descrizione Show yourself in alphabetical order in participants list
Dimensione del File 58.11 KB
Conteggio Installazioni 262
Versione Corrente 1.2
Ultimo Aggiornamento 2023-12-22
Data di Pubblicazione 2021-09-25
Valutazione 4.67/5 Totale 6 Valutazioni
Sviluppatore elizaveta.shashkova
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html
Lingue Supportate 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
}