GoogleMeet mute the mic

An extension that displays/switches the microphone state of Google Meet by an icon.

GoogleMeet mute the micคืออะไร?

GoogleMeet mute the mic เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ssvaluesccg และคุณลักษณะหลักของมันคือ "An extension that displays/switches the microphone state of Google Meet by an icon."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GoogleMeet mute the mic

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

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

                        Google Meet (https://meet.google.com/*) に便利な機能を追加します。
以下の機能があります。
機能1. 自分のマイクの状態によって、マイクアイコンを変化させる。
 ・オン→黒マイク/ON
 ・オフ→赤マイク/mute
これにより、他のタブにいても、自分のマイク状態がどのようになっているか判断することができます。
機能2. マイクアイコンを押すことで、Google Meet上のマイクのオンとオフを切り替えることができる。
 これまでは通話中に、他のタブで調べもの等の作業をしている時、Google Meetのタブに戻らなければ、マイクを切り替えることは困難でした。しかし、この機能により、他のタブで作業をしながらでも、アイコンをクリックするだけで、確実にマイク状態を切り替えることができるようになります。                    

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

ชื่อ GoogleMeet mute the mic GoogleMeet mute the mic
ID dcedgjkbdopfkkbefhmjlnpegjgpolej
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/googlemeet-mute-the-mic/dcedgjkbdopfkkbefhmjlnpegjgpolej
คำอธิบาย An extension that displays/switches the microphone state of Google Meet by an icon.
ขนาดไฟล์ 37.64 KB
จำนวนการติดตั้ง 262
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2021-06-16
วันที่เผยแพร่ 2020-07-09
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา ssvaluesccg
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "An extension that displays\/switches the microphone state of Google Meet by an icon.",
    "name": "GoogleMeet mute the mic",
    "version": "1.1",
    "icons": {
        "16": ".\/img\/mic1.png",
        "48": ".\/img\/mic3.png",
        "128": ".\/img\/mic4.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "browser_action": {
        "name": "Determine if it is muted.",
        "default_icon": ".\/img\/mic2.png"
    }
}