Meet Chat Notifications

Meet Chat Notifications

Cos'è Meet Chat Notifications?

Meet Chat Notifications è un'estensione di Chrome sviluppata da ExpressTech, e la sua funzione principale è "Meet Chat Notifications".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Meet Chat Notifications

Scarica i file di estensione Meet Chat 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

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

Informazioni di Base sull'Estensione

Nome Meet Chat Notifications Meet Chat Notifications
ID pjhpmbjmhmajhgjhkojockbjjapppdbe
URL Ufficiale https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe
Descrizione Meet Chat Notifications
Dimensione del File 45.63 KB
Conteggio Installazioni 8,630
Versione Corrente 2.1.0
Ultimo Aggiornamento 2021-06-22
Data di Pubblicazione 2020-05-18
Valutazione 3.60/5 Totale 25 Valutazioni
Sviluppatore ExpressTech
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://mycodding.com/
URL della Pagina di Aiuto https://mycodding.com/privacy-policy/
Lingue Supportate 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"
            ]
        }
    ]
}