Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
ما هو Meet Notifications؟
Meet Notifications هو إضافة Chrome تم تطويرها بواسطة DevDiary، والميزة الرئيسية لها هي "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Meet Notifications
قم بتنزيل ملفات الامتداد Meet Notifications بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
--- วิธีใช้งาน --- 1. คลิกที่ icon "Meet Notifications" 2. คลิกที่ switch button ให้ปุ่มเปลี่ยนสถานะเป็นสีฟ้า เพียงเท่านี้ก็สามารถใช้งาน Meet Notifications ได้แล้ว 👍 --- How to use --- 1. Click on the icon "Meet Notifications". 2. Click the switch button to change the status to blue. That's it. You can use the Meet Notifications. 👍
معلومات أساسية عن التمديد
الاسم | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
الوصف | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
حجم الملف | 19.48 KB |
عدد التثبيتات | 34 |
النسخة الحالية | 0.1.5 |
آخر تحديث | 2020-06-24 |
تاريخ النشر | 2020-06-24 |
تقييم | 4.00/5 مجموع تقييمات 2 |
المطور | DevDiary |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.facebook.com/devdiaryTH |
عنوان صفحة المساعدة | https://www.facebook.com/devdiaryTH |
عنوان صفحة سياسة الخصوصية | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet Notifications", "version": "0.1.5", "manifest_version": 2, "description": "Meet Notifications improves the Google Meet experience with \"Notification\" when the audience sent the message in the room.", "author": "Ic3berg", "content_security_policy": "default-src 'self'", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "storage" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "default_popup": "popup.html", "default_title": "Meet Notifications" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js", "controller.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "content.js", "controller.js" ] } |