Gather Mic Toggle
Mic Toggle on gather.town
Apa itu Gather Mic Toggle?
Gather Mic Toggle adalah ekstensi Chrome yang dikembangkan oleh Caio Rodrigues, dan fitur utamanya adalah "Mic Toggle on gather.town".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Gather Mic Toggle
Unduh file ekstensi Gather Mic Toggle 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
Provides a microphone toggling keyboard shortcut on the video-calling virtual space app Gather.town (https://gather.town/). Default is Ctrl+Q, but you can customize it on chrome://extensions/shortcuts. *Disclaimer: the extension is not provided by Gather Town officially and the author has no affiliation with it
Informasi Dasar Ekstensi
Nama | Gather Mic Toggle |
ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
URL Resmi | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
Deskripsi | Mic Toggle on gather.town |
Ukuran File | 15.3 KB |
Jumlah Instalasi | 86 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2021-04-20 |
Tanggal Publikasi | 2021-04-19 |
Pengembang | Caio Rodrigues |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gather Mic Toggle", "description": "Mic Toggle on gather.town", "version": "1.0", "manifest_version": 2, "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" }, "permissions": [ "https:\/\/gather.town\/app\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/gather.town\/app\/*" ], "js": [ "content.js" ] } ], "commands": { "toggle": { "suggested_key": { "default": "Ctrl+Q", "mac": "Command+Q" }, "description": "Mute\/unmute", "global": true } }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" } } |