Meet Chat Notifier
Meet Chat Notifier
Meet Chat Notifier क्या है?
Meet Chat Notifier João Vitor da Costa Andrade द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Meet Chat Notifier"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Meet Chat Notifier एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The extension generates a notification of Google Meet chat messages. You can browse other screens, and if you receive a chat message, it will appear as a notification on your operating system. Are you a teacher? see students' questions while teaching!. While using Google Meet, you can disable notifications and re-enable them at any time. * Extension tested on Windows 10, macOS, PopOS. * Make sure notifications are enabled on your computer. * In Windows 10 for notifications to appear in full screen, turn off the focus assistant. Tutorial: https://sites.google.com/view/meet-chat-notifier/perguntas-frequentes (Beta extension translation)
एक्सटेंशन की मूल जानकारी
नाम | Meet Chat Notifier |
ID | iojeepncopmmkklnmefdogcboiebpljo |
आधिकारिक URL | https://chromewebstore.google.com/detail/meet-chat-notifier/iojeepncopmmkklnmefdogcboiebpljo |
विवरण | Meet Chat Notifier |
फ़ाइल का आकार | 31.95 KB |
स्थापना संख्या | 3,182 |
वर्तमान संस्करण | 0.0.8 |
अंतिम अपडेट | 2023-05-06 |
प्रकाशन तिथि | 2020-07-31 |
रेटिंग | 4.79/5 कुल 14 रेटिंग्स |
डेवलपर | João Vitor da Costa Andrade |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://sites.google.com/view/meet-chat-notifier |
सहायता पृष्ठ URL | https://forms.gle/aKCdGdN1aaACkVqf7 |
समर्थित भाषाएँ | en,en-US,pt-BR,pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.0.8", "name": "Meet Chat Notifier", "description": "Meet Chat Notifier", "author": "Jo\u00e3o Vitor da Costa Andrade", "permissions": [ "notifications" ], "icons": { "16": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "15": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png" }, "default_title": "Meet Chat Notifier", "default_popup": "index.html" }, "default_locale": "en", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content_new_layout.js", "initializer.js" ] } ] } |