Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Qu'est-ce que Meet Notifications ?
Meet Notifications est une extension Chrome développée par DevDiary, et sa fonction principale est "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Meet Notifications
Téléchargez les fichiers d'extension Meet Notifications au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
--- วิธีใช้งาน --- 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. 👍
Informations de Base sur l'Extension
Nom | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
URL Officiel | 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. |
Taille du Fichier | 19.48 KB |
Nombre d'Installations | 34 |
Version Actuelle | 0.1.5 |
Dernière Mise à Jour | 2020-06-24 |
Date de Publication | 2020-06-24 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | DevDiary |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.facebook.com/devdiaryTH |
URL de la Page d'Aide | https://www.facebook.com/devdiaryTH |
URL de la Page de Politique de Confidentialité | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
Langues Prises en Charge | 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" ] } |