Meet Chat Notifications

Meet Chat Notifications

Hvad er Meet Chat Notifications?

Meet Chat Notifications er en Chrome-udvidelse udviklet af ExpressTech, og dens hovedfunktion er "Meet Chat Notifications".

Udvidelsesskærmbilleder

screenshot

Download Meet Chat Notifications-udvidelses-CRX-fil

Download Meet Chat Notifications-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Meet Chat Notifications Meet Chat Notifications
ID pjhpmbjmhmajhgjhkojockbjjapppdbe
Officiel URL https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe
Beskrivelse Meet Chat Notifications
Filstørrelse 45.63 KB
Antal Installationer 8,630
Nuværende Version 2.1.0
Senest Opdateret 2021-06-22
Udgivelsesdato 2020-05-18
Bedømmelse 3.60/5 Samlet 25 Bedømmelser
Udvikler ExpressTech
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://mycodding.com/
Hjælpeside-URL https://mycodding.com/privacy-policy/
Understøttede Sprog 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"
            ]
        }
    ]
}