Gather Mute Shortcut

Press SPACE to talk and custom shortcut to toggle mute

Apa itu Gather Mute Shortcut?

Gather Mute Shortcut adalah ekstensi Chrome yang dikembangkan oleh https://shinychang.net, dan fitur utamanya adalah "Press SPACE to talk and custom shortcut to toggle mute".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Gather Mute Shortcut

Unduh file ekstensi Gather Mute Shortcut 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

                        Press SPACE to un-mute
Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic                    

Informasi Dasar Ekstensi

Nama Gather Mute Shortcut Gather Mute Shortcut
ID ohhjbipfhipcebhjkcbodeilfgekihpj
URL Resmi https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj
Deskripsi Press SPACE to talk and custom shortcut to toggle mute
Ukuran File 5.41 KB
Jumlah Instalasi 97
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2022-02-17
Tanggal Publikasi 2021-08-30
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://shinychang.net
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gather Mute Shortcut",
    "description": "Press SPACE to talk and custom shortcut to toggle mute",
    "version": "1.0.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.gather.town\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "toggleMute": {
            "suggested_key": {
                "default": "Ctrl+D",
                "mac": "Command+D"
            },
            "description": "Toggle Mic on\/off"
        }
    }
}