Meet Chat Notifications

Meet Chat Notifications

Meet Chat Notifications là gì?

Meet Chat Notifications là một tiện ích mở rộng Chrome được phát triển bởi ExpressTech, và tính năng chính của nó là "Meet Chat Notifications".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Meet Chat Notifications

Tải xuống các tệp mở rộng Meet Chat Notifications dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Meet Chat Notifications Meet Chat Notifications
ID pjhpmbjmhmajhgjhkojockbjjapppdbe
URL Chính Thức https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe
Mô tả Meet Chat Notifications
Kích Thước Tệp 45.63 KB
Số Lần Cài Đặt 8,630
Phiên Bản Hiện Tại 2.1.0
Cập Nhật Lần Cuối 2021-06-22
Ngày Phát Hành 2020-05-18
Đánh Giá 3.60/5 Tổng số 25 Đánh Giá
Nhà Phát Triển ExpressTech
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mycodding.com/
URL Trang Trợ Giúp https://mycodding.com/privacy-policy/
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}