Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Wat is Meet Notifications?
Meet Notifications is een Chrome-extensie ontwikkeld door DevDiary, en de belangrijkste functie is "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
Extensie Screenshots
Download het CRX-bestand van de extensie Meet Notifications
Download Meet Notifications-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
--- วิธีใช้งาน --- 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. 👍
Basisinformatie over de Extensie
Naam | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
Officiële URL | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
Beschrijving | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
Bestandsgrootte | 19.48 KB |
Aantal Installaties | 34 |
Huidige Versie | 0.1.5 |
Laatst Bijgewerkt | 2020-06-24 |
Publicatiedatum | 2020-06-24 |
Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | DevDiary |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://www.facebook.com/devdiaryTH |
Help Pagina-URL | https://www.facebook.com/devdiaryTH |
URL van de Privacybeleid Pagina | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
Ondersteunde Talen | 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" ] } |