Talk Time for Google Meet

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

¿Qué es Talk Time for Google Meet?

Talk Time for Google Meet es una extensión de Chrome desarrollada por matthew.a.kruse, y su función principal es "Track and display the talk time and percent of talking time for each participant in a Google Meet".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Talk Time for Google Meet

Descarga archivos de extensión Talk Time for Google Meet en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Talk Time for Google Meet Talk Time for Google Meet
ID bonlpfoeaoeadalicohkefgpkjplmfbg
URL Oficial https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg
Descripción Track and display the talk time and percent of talking time for each participant in a Google Meet
Tamaño del Archivo 61.07 KB
Cantidad de Instalaciones 1,714
Versión Actual 3.1
Última Actualización 2021-03-09
Fecha de Publicación 2021-02-28
Calificación 3.82/5 Total de 11 Calificaciones
Desarrollador matthew.a.kruse
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://EveryoneShouldHaveAVoice.com
URL de la Página de Ayuda https://github.com/matt-kruse/talk-time
URL de la Página de Política de Privacidad https://socialfixer.com/privacy.txt
Idiomas Soportados 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"
    ]
}