Talk Time for Google Meet

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

Vad är Talk Time for Google Meet?

Talk Time for Google Meet är en Chrome-tillägg utvecklad av matthew.a.kruse, och dess huvudfunktion är "Track and display the talk time and percent of talking time for each participant in a Google Meet".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Talk Time for Google Meet-förlängningens CRX-fil

Ladda ner Talk Time for Google Meet-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Talk Time for Google Meet Talk Time for Google Meet
ID bonlpfoeaoeadalicohkefgpkjplmfbg
Officiell webbadress https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg
Beskrivning Track and display the talk time and percent of talking time for each participant in a Google Meet
Filstorlek 61.07 KB
Antal Installationer 1,714
Aktuell Version 3.1
Senast Uppdaterad 2021-03-09
Publiceringsdatum 2021-02-28
Betyg 3.82/5 Totalt 11 Betyg
Utvecklare matthew.a.kruse
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://EveryoneShouldHaveAVoice.com
Hjälpsida URL https://github.com/matt-kruse/talk-time
URL till Sekretesspolicy Sidan https://socialfixer.com/privacy.txt
Stödda Språk 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"
    ]
}