Meet Chat Notifications

Meet Chat Notifications

Meet Chat Notifications क्या है?

Meet Chat Notifications ExpressTech द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Meet Chat Notifications"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Meet Chat Notifications एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम Meet Chat Notifications Meet Chat Notifications
ID pjhpmbjmhmajhgjhkojockbjjapppdbe
आधिकारिक URL https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe
विवरण Meet Chat Notifications
फ़ाइल का आकार 45.63 KB
स्थापना संख्या 8,630
वर्तमान संस्करण 2.1.0
अंतिम अपडेट 2021-06-22
प्रकाशन तिथि 2020-05-18
रेटिंग 3.60/5 कुल 25 रेटिंग्स
डेवलपर ExpressTech
ईमेल support@expresstech.io
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://mycodding.com/
सहायता पृष्ठ URL https://mycodding.com/privacy-policy/
समर्थित भाषाएँ 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"
            ]
        }
    ]
}