Google Meet Controls

Control your microphone manners for Meet

Google Meet Controlsคืออะไร?

Google Meet Controls เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ivan Tichý และคุณลักษณะหลักของมันคือ "Control your microphone manners for Meet"

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

screenshot

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

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

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

                        This is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation.

It needs Chrome restart after installation.                    

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

ชื่อ Google Meet Controls Google Meet Controls
ID ncebfbcadlnhbfmfglhijjljfhimndil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil
คำอธิบาย Control your microphone manners for Meet
ขนาดไฟล์ 22.74 KB
จำนวนการติดตั้ง 665
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2020-02-06
วันที่เผยแพร่ 2020-02-06
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Ivan Tichý
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Controls",
    "short_name": "Meet Controls",
    "description": "Control your microphone manners for Meet",
    "version": "2.0",
    "icons": {
        "128": "notmuted.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "meet_controller.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "keyboard_listener.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "notifications"
    ],
    "commands": {
        "toggle": {
            "description": "Toggle mute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+X",
                "mac": "MacCtrl+X"
            }
        },
        "mute": {
            "description": "Force mute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "MacCtrl+M"
            }
        },
        "unmute": {
            "description": "Force unmute",
            "global": true,
            "suggested_key": {
                "default": "Ctrl+U",
                "mac": "MacCtrl+U"
            }
        }
    }
}