Google Meet Presenter Mode

Choose whether you can be muted while presenting in Google Meet

Τι είναι το Google Meet Presenter Mode;

Το Google Meet Presenter Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Petri Koivula, και η κύρια λειτουργία του είναι "Choose whether you can be muted while presenting in Google Meet".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Google Meet Presenter Mode

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

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

                        Gives you a choice of whether other Google Meet users can mute you or not.

Intended for use by teachers and other presenters who might get griefed by anonymous users muting them in Meet.                    

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

Όνομα Google Meet Presenter Mode Google Meet Presenter Mode
ID fiidmaaecmjkhpfinfkdcabglcmghnaa
Επίσημο URL https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa
Περιγραφή Choose whether you can be muted while presenting in Google Meet
Μέγεθος Αρχείου 6.03 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2020-04-14
Ημερομηνία Δημοσίευσης 2020-04-14
Αξιολόγηση 4.29/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής Petri Koivula
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://gitlab.com/PKJedi/meet-presenter
Διεύθυνση URL της Σελίδας Βοήθειας https://gitlab.com/PKJedi/meet-presenter/-/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Presenter Mode",
    "short_name": "Presenter Mode",
    "version": "0.0.2",
    "description": "Choose whether you can be muted while presenting in Google Meet",
    "page_action": {
        "default_icon": {
            "32": "assets\/icon_off_32.png"
        },
        "default_title": "Disabled"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "permissions": [
        "declarativeContent",
        "https:\/\/meet.google.com\/*"
    ]
}