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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
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"
            ]
        }
    ]
}