Talk Time for Google Meet

Track and display the talk time and percent of talking time for each participant in a Google Meet

什么是Talk Time for Google Meet?

Talk Time for Google Meet是由matthew.a.kruse开发的Chrome扩展程序,该扩展的主要功能是“Track and display the talk time and percent of talking time for each participant in a Google Meet”。

扩展截图

screenshot
screenshot

下载Talk Time for Google Meet扩展crx文件

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

扩展使用说明

                        Talk Time for Google Meet automatically detects when each participant in a meeting speaks, and tracks the total speaking time for each person.
It also allows you to arbitrarily group participants to combine their time and track it together.

This allows leaders to make sure they are not hogging the conversation, companies to make sure they are letting their clients speak, teachers to make sure each student is heard, and anyone focused on diversity to make sure each perspective is heard.                    

扩展基本信息

名称 Talk Time for Google Meet Talk Time for Google Meet
ID bonlpfoeaoeadalicohkefgpkjplmfbg
官方URL https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg
简介 Track and display the talk time and percent of talking time for each participant in a Google Meet
文件大小 61.07 KB
安装次数 1,714
当前版本 3.1
更新时间 2021-03-09
上架时间 2021-02-28
评分 3.82/5 共11次评分
开发者 matthew.a.kruse
电子邮箱 [email protected]
付费类型 free
扩展官网 https://EveryoneShouldHaveAVoice.com
帮助页面URL https://github.com/matt-kruse/talk-time
隐私政策页面URL https://socialfixer.com/privacy.txt
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Track and display the talk time and percent of talking time for each participant in a Google Meet",
    "manifest_version": 2,
    "name": "Talk Time for Google Meet",
    "author": "Matt Kruse",
    "version": "3.1",
    "homepage_url": "https:\/\/EveryoneShouldHaveAVoice.com\/",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/meet.google.com\/*",
        "https:\/\/EveryoneShouldHaveAVoice.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "resources\/*.png"
    ]
}