Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Cos'è Meet Notifications?
Meet Notifications è un'estensione di Chrome sviluppata da DevDiary, e la sua funzione principale è "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Meet Notifications
Scarica i file di estensione Meet Notifications in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
--- วิธีใช้งาน --- 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. 👍
Informazioni di Base sull'Estensione
Nome | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
URL Ufficiale | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
Descrizione | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
Dimensione del File | 19.48 KB |
Conteggio Installazioni | 34 |
Versione Corrente | 0.1.5 |
Ultimo Aggiornamento | 2020-06-24 |
Data di Pubblicazione | 2020-06-24 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | DevDiary |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.facebook.com/devdiaryTH |
URL della Pagina di Aiuto | https://www.facebook.com/devdiaryTH |
URL della Pagina della Politica sulla Privacy | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
Lingue Supportate | 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" ] } |