Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Meet Notifications क्या है?
Meet Notifications DevDiary द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Meet Notifications एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | https://www.facebook.com/devdiaryTH |
गोपनीयता नीति पृष्ठ URL | 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" ] } |