Gather Mic Toggle
Mic Toggle on gather.town
ما هو Gather Mic Toggle؟
Gather Mic Toggle هو إضافة Chrome تم تطويرها بواسطة Caio Rodrigues، والميزة الرئيسية لها هي "Mic Toggle on gather.town".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Gather Mic Toggle
قم بتنزيل ملفات الامتداد Gather Mic Toggle بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | Gather Mic Toggle |
ID | dicgdmbehbkbkncebodffnhkgoaebpoo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/gather-mic-toggle/dicgdmbehbkbkncebodffnhkgoaebpoo |
الوصف | Mic Toggle on gather.town |
حجم الملف | 15.3 KB |
عدد التثبيتات | 86 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-04-20 |
تاريخ النشر | 2021-04-19 |
المطور | Caio Rodrigues |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" } } |