Sort the Meet

Show yourself in alphabetical order in participants list

Τι είναι το Sort the Meet;

Το Sort the Meet είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον elizaveta.shashkova, και η κύρια λειτουργία του είναι "Show yourself in alphabetical order in participants list".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Sort the Meet

Λήψη αρχείων επέκτασης Sort the Meet σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Sort the Meet Sort the Meet
ID dokbaedihaiifdlfgbeillibkpngoikg
Επίσημο URL https://chromewebstore.google.com/detail/sort-the-meet/dokbaedihaiifdlfgbeillibkpngoikg
Περιγραφή Show yourself in alphabetical order in participants list
Μέγεθος Αρχείου 58.11 KB
Αριθμός Εγκαταστάσεων 262
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2023-12-22
Ημερομηνία Δημοσίευσης 2021-09-25
Αξιολόγηση 4.67/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής elizaveta.shashkova
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/Elizaveta239/sort-the-meet/blob/master/privacy-policy.html
Υποστηριζόμενες Γλώσσες 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
}