Talk Time for Google Meet

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

What is Talk Time for Google Meet?

Talk Time for Google Meet is a Chrome extension developed by matthew.a.kruse, and its main feature is "Track and display the talk time and percent of talking time for each participant in a Google Meet".

Extension Screenshots

screenshot
screenshot

Download Talk Time for Google Meet Extension CRX File

Download Talk Time for Google Meet extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Talk Time for Google Meet Talk Time for Google Meet
ID bonlpfoeaoeadalicohkefgpkjplmfbg
Official URL https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg
Description Track and display the talk time and percent of talking time for each participant in a Google Meet
File Size 61.07 KB
Installation Count 1,714
Current Version 3.1
Last Updated 2021-03-09
Publish Date 2021-02-28
Rating 3.82/5 Total 11 Ratings
Developer matthew.a.kruse
Email [email protected]
Payment Type free
Extension Website https://EveryoneShouldHaveAVoice.com
Help Page URL https://github.com/matt-kruse/talk-time
Privacy Policy Page URL https://socialfixer.com/privacy.txt
Supported Languages 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"
    ]
}