Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Was ist Meet Notifications?
Meet Notifications ist eine Chrome-Erweiterung, die von DevDiary entwickelt wurde, und ihr Hauptmerkmal ist "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
Erweiterungsscreenshots
Meet Notifications-Erweiterungs-CRX-Datei herunterladen
Laden Sie Meet Notifications-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
--- วิธีใช้งาน ---
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. 👍 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lekaeknoegncijhnchifjdnclipppcnp |
| Offizielle URL | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
| Beschreibung | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
| Dateigröße | 19.48 KB |
| Installationsanzahl | 34 |
| Aktuelle Version | 0.1.5 |
| Letztes Update | 2020-06-24 |
| Veröffentlichungsdatum | 2020-06-24 |
| Bewertung | 4.00/5 Insgesamt 2 Bewertungen |
| Entwickler | DevDiary |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://www.facebook.com/devdiaryTH |
| Hilfeseite URL | https://www.facebook.com/devdiaryTH |
| URL der Datenschutzrichtlinien-Seite | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
| Unterstützte Sprachen | 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"
]
} | |