Google Meet Presenter Mode

Choose whether you can be muted while presenting in Google Meet

Google Meet Presenter Mode क्या है?

Google Meet Presenter Mode Petri Koivula द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Choose whether you can be muted while presenting in Google Meet"।

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

screenshot
screenshot

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

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

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

                        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\/*"
    ]
}