Google Meet Controls

Control your microphone manners for Meet

Apa itu Google Meet Controls?

Google Meet Controls adalah ekstensi Chrome yang dikembangkan oleh Ivan Tichý, dan fitur utamanya adalah "Control your microphone manners for Meet".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Google Meet Controls

Unduh file ekstensi Google Meet Controls dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Google Meet Controls Google Meet Controls
ID ncebfbcadlnhbfmfglhijjljfhimndil
URL Resmi https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil
Deskripsi Control your microphone manners for Meet
Ukuran File 22.74 KB
Jumlah Instalasi 665
Versi Saat Ini 2.0
Terakhir Diperbarui 2020-02-06
Tanggal Publikasi 2020-02-06
Penilaian 3.00/5 Total 2 Penilaian
Pengembang Ivan Tichý
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
            }
        }
    }
}