Sort the Meet

Show yourself in alphabetical order in participants list

Co to jest Sort the Meet?

Sort the Meet to rozszerzenie Chrome opracowane przez elizaveta.shashkova, a jego główną funkcją jest „Show yourself in alphabetical order in participants list”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Sort the Meet

Pobierz pliki rozszerzeń Sort the Meet w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Sort the Meet Sort the Meet
ID dokbaedihaiifdlfgbeillibkpngoikg
Oficjalny URL https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg
Opis Show yourself in alphabetical order in participants list
Rozmiar pliku 58.11 KB
Liczba instalacji 262
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2023-12-22
Data Publikacji 2021-09-25
Ocena 4.67/5 Łącznie 6 Oceny
Deweloper elizaveta.shashkova
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html
Obsługiwane Języki 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
}