Google Meet Mute Toggler

For muting and unmuting Google Meet from the extension icon.

Google Meet Mute Toggler क्या है?

Google Meet Mute Toggler Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "For muting and unmuting Google Meet from the extension icon."।

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

screenshot

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

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

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

                        For muting and unmuting Google Meet from the extension icon in the Chrome browser, no matter what tab you're currently looking at.

Features
* Toggle mute in your active Google Meet no matter what tab you're looking at
* Extension icon is green when you're in an active Google Meet and unmuted, red when muted, and otherwise gray
* You'll get an error message if you have more than one Meet open
* You can toggle the mute button on a Meet join page but it won't do much
* If you have a Meet open and toggle muting from within the application or using your keyboard, the extension icon will register this and change color appropriately (checks ever 3 seconds)

See code at https://github.com/jasonketola/Google-Meet-Mute-Toggler.                    

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

नाम Google Meet Mute Toggler Google Meet Mute Toggler
ID fkdppolbkpdoebdhflolnnkeiaoblfjc
आधिकारिक URL https://chromewebstore.google.com/detail/google-meet-mute-toggler/fkdppolbkpdoebdhflolnnkeiaoblfjc
विवरण For muting and unmuting Google Meet from the extension icon.
फ़ाइल का आकार 11.12 KB
स्थापना संख्या 8,694
वर्तमान संस्करण 0.3
अंतिम अपडेट 2021-10-31
प्रकाशन तिथि 2020-04-19
रेटिंग 3.33/5 कुल 3 रेटिंग्स
डेवलपर Unknown
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/jasonketola/Google-Meet-Mute-Toggler
सहायता पृष्ठ URL https://github.com/jasonketola/Google-Meet-Mute-Toggler
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Mute Toggler",
    "description": "For muting and unmuting Google Meet from the extension icon.",
    "version": "0.3",
    "author": "Jason Ketola",
    "icons": {
        "16": "M_gray16.png",
        "48": "M_gray48.png",
        "128": "M_gray128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Toggle",
        "default_icon": "M_gray128.png"
    },
    "permissions": [
        "tabs",
        "https:\/\/meet.google.com\/",
        "alarms"
    ]
}