Mute Defaults

This extension lets you set default mute settings for your microphone and camera in google meet.

Mute Defaultsคืออะไร?

Mute Defaults เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tinyj และคุณลักษณะหลักของมันคือ "This extension lets you set default mute settings for your microphone and camera in google meet."

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

screenshot

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

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

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

                        Annoyed having to click mute on both your camera and microphone when joining a google meet? You can use this extension to automatically mute your camera or microphone automatically before you click join.                    

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

ชื่อ Mute Defaults Mute Defaults
ID flmgkolakahfmbefefpeggkhfolpgdoj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mute-defaults/flmgkolakahfmbefefpeggkhfolpgdoj
คำอธิบาย This extension lets you set default mute settings for your microphone and camera in google meet.
ขนาดไฟล์ 31.02 KB
จำนวนการติดตั้ง 1,702
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2022-08-04
วันที่เผยแพร่ 2018-01-19
คะแนน 3.91/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา tinyj
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jjshoe/MuteDefaults
URL หน้าช่วยเหลือ https://github.com/jjshoe/MuteDefaults/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mute Defaults",
    "short_name": "Mute Defaults",
    "description": "This extension lets you set default mute settings for your microphone and camera in google meet.",
    "version": "3.0",
    "homepage_url": "http:\/\/github.com\/jjshoe\/MuteDefaults",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_icon": "icon128.png",
        "default_popup": "settings.html",
        "default_title": "Manage microphone and camera settings on google meet"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "hook_hangouts.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}