Meet Chat Notifications

Meet Chat Notifications

什麼是Meet Chat Notifications?

Meet Chat Notifications是由ExpressTech開發的Chrome擴展程式,該擴展的主要功能是“Meet Chat Notifications”。

擴展截圖

screenshot

下載Meet Chat Notifications擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}