Google Meet Presenter Mode
Choose whether you can be muted while presenting in Google Meet
ما هو Google Meet Presenter Mode؟
Google Meet Presenter Mode هو إضافة Chrome تم تطويرها بواسطة Petri Koivula، والميزة الرئيسية لها هي "Choose whether you can be muted while presenting in Google Meet".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Meet Presenter Mode
قم بتنزيل ملفات الامتداد Google Meet Presenter Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Gives you a choice of whether other Google Meet users can mute you or not. Intended for use by teachers and other presenters who might get griefed by anonymous users muting them in Meet.
معلومات أساسية عن التمديد
الاسم | Google Meet Presenter Mode |
ID | fiidmaaecmjkhpfinfkdcabglcmghnaa |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa |
الوصف | Choose whether you can be muted while presenting in Google Meet |
حجم الملف | 6.03 KB |
عدد التثبيتات | 10,000 |
النسخة الحالية | 0.0.2 |
آخر تحديث | 2020-04-14 |
تاريخ النشر | 2020-04-14 |
تقييم | 4.29/5 مجموع تقييمات 7 |
المطور | Petri Koivula |
نوع الدفع | free |
موقع الإضافة | https://gitlab.com/PKJedi/meet-presenter |
عنوان صفحة المساعدة | https://gitlab.com/PKJedi/meet-presenter/-/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Presenter Mode", "short_name": "Presenter Mode", "version": "0.0.2", "description": "Choose whether you can be muted while presenting in Google Meet", "page_action": { "default_icon": { "32": "assets\/icon_off_32.png" }, "default_title": "Disabled" }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "src\/content.js" ] } ], "permissions": [ "declarativeContent", "https:\/\/meet.google.com\/*" ] } |