Talk Time for Google Meet

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

Cos'è Talk Time for Google Meet?

Talk Time for Google Meet è un'estensione di Chrome sviluppata da matthew.a.kruse, e la sua funzione principale è "Track and display the talk time and percent of talking time for each participant in a Google Meet".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Talk Time for Google Meet

Scarica i file di estensione Talk Time for Google Meet in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Talk Time for Google Meet Talk Time for Google Meet
ID bonlpfoeaoeadalicohkefgpkjplmfbg
URL Ufficiale https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg
Descrizione Track and display the talk time and percent of talking time for each participant in a Google Meet
Dimensione del File 61.07 KB
Conteggio Installazioni 1,714
Versione Corrente 3.1
Ultimo Aggiornamento 2021-03-09
Data di Pubblicazione 2021-02-28
Valutazione 3.82/5 Totale 11 Valutazioni
Sviluppatore matthew.a.kruse
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://EveryoneShouldHaveAVoice.com
URL della Pagina di Aiuto https://github.com/matt-kruse/talk-time
URL della Pagina della Politica sulla Privacy https://socialfixer.com/privacy.txt
Lingue Supportate 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"
    ]
}