Meet Chat Notifications
Meet Chat Notifications
Wat is Meet Chat Notifications?
Meet Chat Notifications is een Chrome-extensie ontwikkeld door ExpressTech, en de belangrijkste functie is "Meet Chat Notifications".
Extensie Screenshots
Download het CRX-bestand van de extensie Meet Chat Notifications
Download Meet Chat 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
This extension is used to show a notification for when someone uses the chat in Google Meet. Basisinformatie over de Extensie
| Naam | |
| ID | pjhpmbjmhmajhgjhkojockbjjapppdbe |
| Officiële URL | https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe |
| Beschrijving | Meet Chat Notifications |
| Bestandsgrootte | 45.63 KB |
| Aantal Installaties | 8,630 |
| Huidige Versie | 2.1.0 |
| Laatst Bijgewerkt | 2021-06-22 |
| Publicatiedatum | 2020-05-18 |
| Beoordeling | 3.60/5 Totaal 25 Beoordelingen |
| Ontwikkelaar | ExpressTech |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://mycodding.com/ |
| Help Pagina-URL | https://mycodding.com/privacy-policy/ |
| Ondersteunde Talen | 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"
]
}
]
} | |