MuteMe Web Extension

Take control of web-based video calls with MuteMe

MuteMe Web Extension क्या है?

MuteMe Web Extension parm द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take control of web-based video calls with MuteMe"।

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

screenshot

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

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

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

                        "Introducing the MuteMe Chrome Extension - the ultimate solution for muting and unmuting your web based video conferences with ease! With this extension, you'll have level three integration that allows you to mute or unmute your microphone on popular platforms like Google Meet, Teams, and more (coming soon).

And the best part? The virtual mute button for the platforms stays in sync with all other methods of muting including the tray icon and your MuteMe, so you'll never have to worry about mismatched mute states. Simply download the free MuteMe app at www.muteme.com/download to get started.

This extension only currently works with one Chrome profile. Using it across multiple profiles will not work. MuteMe software version 0.15.0 or above is required.                    

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

नाम MuteMe Web Extension MuteMe Web Extension
ID iabboefdfnocmnkmoejbmacffgfafbbf
आधिकारिक URL https://chromewebstore.google.com/detail/muteme-web-extension/iabboefdfnocmnkmoejbmacffgfafbbf
विवरण Take control of web-based video calls with MuteMe
फ़ाइल का आकार 178 KB
स्थापना संख्या 3,779
वर्तमान संस्करण 1.5.0
अंतिम अपडेट 2023-09-25
प्रकाशन तिथि 2023-03-15
रेटिंग 3.50/5 कुल 2 रेटिंग्स
डेवलपर parm
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://muteme.com
सहायता पृष्ठ URL https://muteme.com/pages/contact-us
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*",
        "https:\/\/teams.live.com\/*",
        "http:\/\/localhost\/*"
    ],
    "icons": {
        "16": "\/images\/muteme16.png",
        "32": "\/images\/muteme32.png",
        "48": "\/images\/muteme48.png",
        "128": "\/images\/muteme128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "googleMeet-control.js"
            ]
        },
        {
            "matches": [
                "https:\/\/teams.live.com\/*"
            ],
            "js": [
                "teams-control.js"
            ]
        }
    ],
    "name": "MuteMe Web Extension",
    "description": "Take control of web-based video calls with MuteMe",
    "version": "1.5.0"
}