Gather Mute Shortcut
Press SPACE to talk and custom shortcut to toggle mute
ما هو Gather Mute Shortcut؟
Gather Mute Shortcut هو إضافة Chrome تم تطويرها بواسطة https://shinychang.net، والميزة الرئيسية لها هي "Press SPACE to talk and custom shortcut to toggle mute".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Gather Mute Shortcut
قم بتنزيل ملفات الامتداد Gather Mute Shortcut بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Press SPACE to un-mute Please visit chrome://extensions/shortcuts to setup the shortcut of toggle mic
معلومات أساسية عن التمديد
الاسم | Gather Mute Shortcut |
ID | ohhjbipfhipcebhjkcbodeilfgekihpj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/gather-mute-shortcut/ohhjbipfhipcebhjkcbodeilfgekihpj |
الوصف | Press SPACE to talk and custom shortcut to toggle mute |
حجم الملف | 5.41 KB |
عدد التثبيتات | 97 |
النسخة الحالية | 1.0.4 |
آخر تحديث | 2022-02-17 |
تاريخ النشر | 2021-08-30 |
تقييم | 5.00/5 مجموع تقييمات 2 |
المطور | https://shinychang.net |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" } } } |