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 Morpho, Inc. द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control the mute function of Google Meet automatically with image recognition and voice recognition."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Meet Auto Mute एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    }
}