Sort the Meet

Show yourself in alphabetical order in participants list

Apa itu Sort the Meet?

Sort the Meet adalah ekstensi Chrome yang dikembangkan oleh elizaveta.shashkova, dan fitur utamanya adalah "Show yourself in alphabetical order in participants list".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Sort the Meet

Unduh file ekstensi Sort the Meet dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Sort the Meet Sort the Meet
ID dokbaedihaiifdlfgbeillibkpngoikg
URL Resmi https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg
Deskripsi Show yourself in alphabetical order in participants list
Ukuran File 58.11 KB
Jumlah Instalasi 262
Versi Saat Ini 1.2
Terakhir Diperbarui 2023-12-22
Tanggal Publikasi 2021-09-25
Penilaian 4.67/5 Total 6 Penilaian
Pengembang elizaveta.shashkova
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html
Bahasa yang Didukung 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
}