Video Call Air Time Monitor

This extension is meant as a tool to help coach colleagues, bosses, or anyone else in your organization! It can be used to prove…

Τι είναι το Video Call Air Time Monitor;

Το Video Call Air Time Monitor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Austin Wilson, και η κύρια λειτουργία του είναι "This extension is meant as a tool to help coach colleagues, bosses, or anyone else in your organization! It can be used to prove…".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Video Call Air Time Monitor

Λήψη αρχείων επέκτασης Video Call Air Time Monitor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        This extension is meant as a tool to help coach colleagues, bosses, or anyone else in your organization! It can be used to prove that certain people on your team are taking up a larger proportion of the "Air Time" than they should and to give concrete data to start a real conversation about how to make sure all voices are included in virtual meetings.

It can also be used to help push people to speak up more! If you want to run meetings where you are not the one 'leading' and ensuring that others' voices are heard, use this tool to coach yourself and to make sure those in the meeting who aren't taking up their space have a chance to do so!                    

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

Όνομα Video Call Air Time Monitor Video Call Air Time Monitor
ID njamajijkfjeppnpdndamgkefcjdnkkm
Επίσημο URL https://chromewebstore.google.com/detail/video-call-air-time-monit/njamajijkfjeppnpdndamgkefcjdnkkm
Περιγραφή This extension is meant as a tool to help coach colleagues, bosses, or anyone else in your organization! It can be used to prove…
Μέγεθος Αρχείου 43.11 KB
Αριθμός Εγκαταστάσεων 42
Τρέχουσα Έκδοση 0.3.0
Τελευταία Ενημέρωση 2022-11-23
Ημερομηνία Δημοσίευσης 2021-04-02
Προγραμματιστής Austin Wilson
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Call Air Time Monitor",
    "version": "0.3.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}