MuteMe Web Extension

Take control of web-based video calls with MuteMe

什麼是MuteMe Web Extension?

MuteMe Web Extension是由parm開發的Chrome擴展程式,該擴展的主要功能是“Take control of web-based video calls with MuteMe”。

擴展截圖

screenshot

下載MuteMe Web Extension擴展crx文件

下載MuteMe Web Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        "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
官方網址 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"
}