Video Call Air Time Monitor

This extension is meant as a tool to help coach colleagues, bosses, or anyone else in your organization! It can be used to prove…

什么是Video Call Air Time Monitor?

Video Call Air Time Monitor是由Austin Wilson开发的Chrome扩展程序,该扩展的主要功能是“This extension is meant as a tool to help coach colleagues, bosses, or anyone else in your organization! It can be used to prove…”。

扩展截图

screenshot
screenshot

下载Video Call Air Time Monitor扩展crx文件

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

扩展使用说明

                        This extension is meant as a tool to help coach colleagues, bosses, or anyone else in your organization! It can be used to prove that certain people on your team are taking up a larger proportion of the "Air Time" than they should and to give concrete data to start a real conversation about how to make sure all voices are included in virtual meetings.

It can also be used to help push people to speak up more! If you want to run meetings where you are not the one 'leading' and ensuring that others' voices are heard, use this tool to coach yourself and to make sure those in the meeting who aren't taking up their space have a chance to do so!                    

扩展基本信息

名称 Video Call Air Time Monitor Video Call Air Time Monitor
ID njamajijkfjeppnpdndamgkefcjdnkkm
官方URL https://chromewebstore.google.com/detail/video-call-air-time-monit/njamajijkfjeppnpdndamgkefcjdnkkm
简介 This extension is meant as a tool to help coach colleagues, bosses, or anyone else in your organization! It can be used to prove…
文件大小 43.11 KB
安装次数 42
当前版本 0.3.0
更新时间 2022-11-23
上架时间 2021-04-02
开发者 Austin Wilson
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Video Call Air Time Monitor",
    "version": "0.3.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "jquery-3.6.0.min.js",
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": "icon16.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}