Notifyer
Set notifications when certain words are spoken in Google Meets.
ما هو Notifyer؟
Notifyer هو إضافة Chrome تم تطويرها بواسطة https://shaneduffy.io، والميزة الرئيسية لها هي "Set notifications when certain words are spoken in Google Meets.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Notifyer
قم بتنزيل ملفات الامتداد Notifyer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Use Notifyer by visiting meet.google.com and selecting the Notifyer icon in your extensions toolbar. Add words you want to be detected to the list. Clicking a word in the list will automatically toggle the detection state on/off. Note: you must have captions turned on in order for text to be detected. This application is open source, the Github link is above. Submit any issues there, and feel free to contribute. -Plans to add Google Hangouts and Zoom in the near future-
معلومات أساسية عن التمديد
الاسم | Notifyer |
ID | lgcickaldmfnogadcbgiadelhbfmbeoi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/notifyer/lgcickaldmfnogadcbgiadelhbfmbeoi |
الوصف | Set notifications when certain words are spoken in Google Meets. |
حجم الملف | 43.02 KB |
عدد التثبيتات | 3,000 |
النسخة الحالية | 1.4 |
آخر تحديث | 2022-08-02 |
تاريخ النشر | 2020-09-23 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://shaneduffy.io |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/cppshane/notifyer |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notifyer", "version": "1.4", "description": "Set notifications when certain words are spoken in Google Meets.", "permissions": [ "declarativeContent", "storage", "notifications" ], "content_scripts": [ { "js": [ "js\/meet.js" ], "matches": [ "*:\/\/*.meet.google.com\/*" ] } ], "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "img\/logo16.png", "32": "img\/logo32.png", "48": "img\/logo48.png", "128": "img\/logo128.png" } }, "icons": { "16": "img\/logo16.png", "32": "img\/logo32.png", "48": "img\/logo48.png", "128": "img\/logo128.png" }, "manifest_version": 2 } |