Google Meet Mute Toggler

For muting and unmuting Google Meet from the extension icon.

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

Google Meet Mute Toggler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "For muting and unmuting Google Meet from the extension icon."

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

screenshot

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

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

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

                        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"
    ]
}