Meet Chat Notifications

Meet Chat Notifications

ما هو Meet Chat Notifications؟

Meet Chat Notifications هو إضافة Chrome تم تطويرها بواسطة ExpressTech، والميزة الرئيسية لها هي "Meet Chat Notifications".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Meet Chat Notifications

قم بتنزيل ملفات الامتداد Meet Chat Notifications بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://mycodding.com/
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}