Meet Chat Notifications

Meet Chat Notifications

Qu'est-ce que Meet Chat Notifications ?

Meet Chat Notifications est une extension Chrome développée par ExpressTech, et sa fonction principale est "Meet Chat Notifications".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Meet Chat Notifications

Téléchargez les fichiers d'extension Meet Chat 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

                        This extension is used to show a notification for when someone uses the chat in Google Meet.                    

Informations de Base sur l'Extension

Nom Meet Chat Notifications Meet Chat Notifications
ID pjhpmbjmhmajhgjhkojockbjjapppdbe
URL Officiel https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe
Description Meet Chat Notifications
Taille du Fichier 45.63 KB
Nombre d'Installations 8,630
Version Actuelle 2.1.0
Dernière Mise à Jour 2021-06-22
Date de Publication 2020-05-18
Évaluation 3.60/5 Total 25 Évaluations
Développeur ExpressTech
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://mycodding.com/
URL de la Page d'Aide https://mycodding.com/privacy-policy/
Langues Prises en Charge 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"
            ]
        }
    ]
}