Talk Time for Google Meet

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

Wat is Talk Time for Google Meet?

Talk Time for Google Meet is een Chrome-extensie ontwikkeld door matthew.a.kruse, en de belangrijkste functie is "Track and display the talk time and percent of talking time for each participant in a Google Meet".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Talk Time for Google Meet

Download Talk Time for Google Meet-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Talk Time for Google Meet Talk Time for Google Meet
ID bonlpfoeaoeadalicohkefgpkjplmfbg
Officiële URL https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg
Beschrijving Track and display the talk time and percent of talking time for each participant in a Google Meet
Bestandsgrootte 61.07 KB
Aantal Installaties 1,714
Huidige Versie 3.1
Laatst Bijgewerkt 2021-03-09
Publicatiedatum 2021-02-28
Beoordeling 3.82/5 Totaal 11 Beoordelingen
Ontwikkelaar matthew.a.kruse
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://EveryoneShouldHaveAVoice.com
Help Pagina-URL https://github.com/matt-kruse/talk-time
URL van de Privacybeleid Pagina https://socialfixer.com/privacy.txt
Ondersteunde Talen 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"
    ]
}