Meet Notifications

Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.

什么是Meet Notifications?

Meet Notifications是由DevDiary开发的Chrome扩展程序,该扩展的主要功能是“Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.”。

扩展截图

screenshot
screenshot
screenshot

下载Meet Notifications扩展crx文件

下载Meet Notifications扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        --- วิธีใช้งาน ---
1. คลิกที่ icon "Meet Notifications"
2. คลิกที่ switch button ให้ปุ่มเปลี่ยนสถานะเป็นสีฟ้า
เพียงเท่านี้ก็สามารถใช้งาน Meet Notifications ได้แล้ว 👍

--- How to use ---
1. Click on the icon "Meet Notifications".
2. Click the switch button to change the status to blue.
That's it. You can use the Meet Notifications. 👍                    

扩展基本信息

名称 Meet Notifications Meet Notifications
ID lekaeknoegncijhnchifjdnclipppcnp
官方URL https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp
简介 Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
文件大小 19.48 KB
安装次数 34
当前版本 0.1.5
更新时间 2020-06-24
上架时间 2020-06-24
评分 4.00/5 共2次评分
开发者 DevDiary
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.facebook.com/devdiaryTH
帮助页面URL https://www.facebook.com/devdiaryTH
隐私政策页面URL https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Notifications",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Meet Notifications improves the Google Meet experience with \"Notification\" when the audience sent the message in the room.",
    "author": "Ic3berg",
    "content_security_policy": "default-src 'self'",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Meet Notifications"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js",
                "controller.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "content.js",
        "controller.js"
    ]
}