Google Meet Controls
Control your microphone manners for Meet
ما هو Google Meet Controls؟
Google Meet Controls هو إضافة Chrome تم تطويرها بواسطة Ivan Tichý، والميزة الرئيسية لها هي "Control your microphone manners for Meet".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Meet Controls
قم بتنزيل ملفات الامتداد Google Meet Controls بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Google Meet Controls |
ID | ncebfbcadlnhbfmfglhijjljfhimndil |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
الوصف | Control your microphone manners for Meet |
حجم الملف | 22.74 KB |
عدد التثبيتات | 665 |
النسخة الحالية | 2.0 |
آخر تحديث | 2020-02-06 |
تاريخ النشر | 2020-02-06 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | Ivan Tichý |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | 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" } } } } |