Meet Chat Notifications

Meet Chat Notifications

What is Meet Chat Notifications?

Meet Chat Notifications is a Chrome extension developed by ExpressTech, and its main feature is "Meet Chat Notifications".

Extension Screenshots

screenshot

Download Meet Chat Notifications Extension CRX File

Download Meet Chat Notifications extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Meet Chat Notifications Meet Chat Notifications
ID pjhpmbjmhmajhgjhkojockbjjapppdbe
Official URL https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe
Description Meet Chat Notifications
File Size 45.63 KB
Installation Count 8,630
Current Version 2.1.0
Last Updated 2021-06-22
Publish Date 2020-05-18
Rating 3.60/5 Total 25 Ratings
Developer ExpressTech
Email [email protected]
Payment Type free
Extension Website https://mycodding.com/
Help Page URL https://mycodding.com/privacy-policy/
Supported Languages 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"
            ]
        }
    ]
}