Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
What is Meet Notifications?
Meet Notifications is a Chrome extension developed by DevDiary, and its main feature is "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
Extension Screenshots
Download Meet Notifications Extension CRX File
Download Meet Notifications extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
--- วิธีใช้งาน --- 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. 👍
Extension Basic Information
Name | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
Official URL | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
Description | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
File Size | 19.48 KB |
Installation Count | 34 |
Current Version | 0.1.5 |
Last Updated | 2020-06-24 |
Publish Date | 2020-06-24 |
Rating | 4.00/5 Total 2 Ratings |
Developer | DevDiary |
[email protected] | |
Payment Type | free |
Extension Website | https://www.facebook.com/devdiaryTH |
Help Page URL | https://www.facebook.com/devdiaryTH |
Privacy Policy Page URL | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
Supported Languages | 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" ] } |