Google Meet Mute Toggler

Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.

Google Meet Mute Togglerคืออะไร?

Google Meet Mute Toggler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย motemen และคุณลักษณะหลักของมันคือ "Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button."

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Mute Toggler

ดาวน์โหลดไฟล์ส่วนขยาย Google Meet Mute Toggler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Meet Mute Toggler Google Meet Mute Toggler
ID ojdhpiapiiphnknbbgddcfnlagfgpjnp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-meet-mute-toggler/ojdhpiapiiphnknbbgddcfnlagfgpjnp
คำอธิบาย Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.
ขนาดไฟล์ 16 KB
จำนวนการติดตั้ง 44
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2021-08-04
วันที่เผยแพร่ 2020-11-11
ผู้พัฒนา motemen
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/motemen/chrome-meet-mute-toggler
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Mute Toggler",
    "version": "1.2.0",
    "browser_action": {
        "default_icon": {
            "32": "assets\/icons\/mic_on.png"
        }
    },
    "permissions": [
        "https:\/\/meet.google.com\/*",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "commands": {
        "focus": {
            "description": "Focus tab",
            "global": true
        },
        "toggle-mute": {
            "description": "Toggle mute",
            "global": true
        }
    }
}