Google Meet Controls

Control your microphone manners for Meet

Google Meet Controls क्या है?

Google Meet Controls Ivan Tichý द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control your microphone manners for Meet"।

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

screenshot

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

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

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

                        This is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation.

It needs Chrome restart after installation.                    

एक्सटेंशन की मूल जानकारी

नाम Google Meet Controls Google Meet Controls
ID ncebfbcadlnhbfmfglhijjljfhimndil
आधिकारिक URL https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil
विवरण Control your microphone manners for Meet
फ़ाइल का आकार 22.74 KB
स्थापना संख्या 665
वर्तमान संस्करण 2.0
अंतिम अपडेट 2020-02-06
प्रकाशन तिथि 2020-02-06
रेटिंग 3.00/5 कुल 2 रेटिंग्स
डेवलपर Ivan Tichý
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Controls",
    "short_name": "Meet Controls",
    "description": "Control your microphone manners for Meet",
    "version": "2.0",
    "icons": {
        "128": "notmuted.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "meet_controller.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "keyboard_listener.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "notifications"
    ],
    "commands": {
        "toggle": {
            "description": "Toggle mute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+X",
                "mac": "MacCtrl+X"
            }
        },
        "mute": {
            "description": "Force mute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "MacCtrl+M"
            }
        },
        "unmute": {
            "description": "Force unmute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+U",
                "mac": "MacCtrl+U"
            }
        }
    }
}