Sort the Meet

Show yourself in alphabetical order in participants list

Vad är Sort the Meet?

Sort the Meet är en Chrome-tillägg utvecklad av elizaveta.shashkova, och dess huvudfunktion är "Show yourself in alphabetical order in participants list".

Tilläggsskärmbilder

screenshot

Ladda ner Sort the Meet-förlängningens CRX-fil

Ladda ner Sort the Meet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Sort the Meet Sort the Meet
ID dokbaedihaiifdlfgbeillibkpngoikg
Officiell webbadress https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg
Beskrivning Show yourself in alphabetical order in participants list
Filstorlek 58.11 KB
Antal Installationer 262
Aktuell Version 1.2
Senast Uppdaterad 2023-12-22
Publiceringsdatum 2021-09-25
Betyg 4.67/5 Totalt 6 Betyg
Utvecklare elizaveta.shashkova
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html
Stödda Språk 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
}