Meet Chat Notifier

Meet Chat Notifier

Τι είναι το Meet Chat Notifier;

Το Meet Chat Notifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον João Vitor da Costa Andrade, και η κύρια λειτουργία του είναι "Meet Chat Notifier".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Meet Chat Notifier

Λήψη αρχείων επέκτασης Meet Chat Notifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The extension generates a notification of Google Meet chat messages.

You can browse other screens, and if you receive a chat message, it will appear as a notification on your operating system.

Are you a teacher? see students' questions while teaching!.

While using Google Meet, you can disable notifications and re-enable them at any time.

* Extension tested on Windows 10, macOS, PopOS.
* Make sure notifications are enabled on your computer.

* In Windows 10 for notifications to appear in full screen, turn off the focus assistant. 
Tutorial: https://sites.google.com/view/meet-chat-notifier/perguntas-frequentes

(Beta extension translation)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Meet Chat Notifier Meet Chat Notifier
ID iojeepncopmmkklnmefdogcboiebpljo
Επίσημο URL https://chromewebstore.google.com/detail/meet-chat-notifier/iojeepncopmmkklnmefdogcboiebpljo
Περιγραφή Meet Chat Notifier
Μέγεθος Αρχείου 31.95 KB
Αριθμός Εγκαταστάσεων 3,182
Τρέχουσα Έκδοση 0.0.8
Τελευταία Ενημέρωση 2023-05-06
Ημερομηνία Δημοσίευσης 2020-07-31
Αξιολόγηση 4.79/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής João Vitor da Costa Andrade
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://sites.google.com/view/meet-chat-notifier
Διεύθυνση URL της Σελίδας Βοήθειας https://forms.gle/aKCdGdN1aaACkVqf7
Υποστηριζόμενες Γλώσσες en,en-US,pt-BR,pt-PT
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.0.8",
    "name": "Meet Chat Notifier",
    "description": "Meet Chat Notifier",
    "author": "Jo\u00e3o Vitor da Costa Andrade",
    "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 Notifier",
        "default_popup": "index.html"
    },
    "default_locale": "en",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_new_layout.js",
                "initializer.js"
            ]
        }
    ]
}