Google Meet Auto Mute

Control the mute function of Google Meet automatically with image recognition and voice recognition.

Τι είναι το Google Meet Auto Mute;

Το Google Meet Auto Mute είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Morpho, Inc., και η κύρια λειτουργία του είναι "Control the mute function of Google Meet automatically with image recognition and voice recognition.".

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

screenshot
screenshot
screenshot

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

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

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

                        Usage:
1. Open Google Meet and allow the browser to use camera and microphone.
2. Mute control runs automatically based on the results of image recognition and voice recognition.
3. Auto-mute mode can be enabled/disabled by clicking the Auto Mute icon.

For more details, please refer to the link below:
https://github.com/morphoinc/auto_mute

Article about this software (in Japanese):
https://techblog.morphoinc.com/entry/2020/08/03/100007                    

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

Όνομα Google Meet Auto Mute Google Meet Auto Mute
ID hbjmnnfhadeedfpchjhofclcdohnbfhe
Επίσημο URL https://chromewebstore.google.com/detail/google-meet-auto-mute/hbjmnnfhadeedfpchjhofclcdohnbfhe
Περιγραφή Control the mute function of Google Meet automatically with image recognition and voice recognition.
Μέγεθος Αρχείου 487 KB
Αριθμός Εγκαταστάσεων 460
Τρέχουσα Έκδοση 1.0.1
Τελευταία Ενημέρωση 2020-08-28
Ημερομηνία Δημοσίευσης 2020-07-26
Αξιολόγηση 4.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Morpho, Inc.
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/morphoinc/auto_mute
URL της Σελίδας Πολιτικής Απορρήτου https://www.morphoinc.com/en/privacy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Auto Mute",
    "version": "1.0.1",
    "description": "Control the mute function of Google Meet automatically with image recognition and voice recognition.",
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "32": "images\/icon32.png",
        "16": "images\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/meet.google.com\/",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "models\/tiny_face_detector_model-shard1",
        "models\/face_landmark_68_tiny_model-shard1",
        "models\/tiny_face_detector_model-weights_manifest.json",
        "models\/face_landmark_68_tiny_model-weights_manifest.json",
        "auto_mute.html"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "auto-mute setting",
        "default_icon": {
            "16": "images\/auto_off16.png",
            "32": "images\/auto_off32.png"
        }
    }
}