MuteMe Web Extension

Take control of web-based video calls with MuteMe

MuteMe Web Extensionคืออะไร?

MuteMe Web Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย parm และคุณลักษณะหลักของมันคือ "Take control of web-based video calls with MuteMe"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MuteMe Web Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
}