Meet Chat Notifications
Meet Chat Notifications
Was ist Meet Chat Notifications?
Meet Chat Notifications ist eine Chrome-Erweiterung, die von ExpressTech entwickelt wurde, und ihr Hauptmerkmal ist "Meet Chat Notifications".
Erweiterungsscreenshots
Meet Chat Notifications-Erweiterungs-CRX-Datei herunterladen
Laden Sie Meet Chat 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
This extension is used to show a notification for when someone uses the chat in Google Meet.
Grundlegende Informationen zur Erweiterung
Name | Meet Chat Notifications |
ID | pjhpmbjmhmajhgjhkojockbjjapppdbe |
Offizielle URL | https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe |
Beschreibung | Meet Chat Notifications |
Dateigröße | 45.63 KB |
Installationsanzahl | 8,630 |
Aktuelle Version | 2.1.0 |
Letztes Update | 2021-06-22 |
Veröffentlichungsdatum | 2020-05-18 |
Bewertung | 3.60/5 Insgesamt 25 Bewertungen |
Entwickler | ExpressTech |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://mycodding.com/ |
Hilfeseite URL | https://mycodding.com/privacy-policy/ |
Unterstützte Sprachen | en,en-US,pt-BR,pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.1.0", "name": "Meet Chat Notifications", "description": "Meet Chat Notifications", "author": "SmolBren", "permissions": [ "notifications" ], "icons": { "16": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "15": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png" }, "default_title": "Meet Chat Notification", "default_popup": "index.html" }, "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js" ] } ] } |