Talk Time for Google Meet
Track and display the talk time and percent of talking time for each participant in a Google Meet
Was ist Talk Time for Google Meet?
Talk Time for Google Meet ist eine Chrome-Erweiterung, die von matthew.a.kruse entwickelt wurde, und ihr Hauptmerkmal ist "Track and display the talk time and percent of talking time for each participant in a Google Meet".
Erweiterungsscreenshots
Talk Time for Google Meet-Erweiterungs-CRX-Datei herunterladen
Laden Sie Talk Time for Google Meet-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Talk Time for Google Meet |
ID | bonlpfoeaoeadalicohkefgpkjplmfbg |
Offizielle URL | https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg |
Beschreibung | Track and display the talk time and percent of talking time for each participant in a Google Meet |
Dateigröße | 61.07 KB |
Installationsanzahl | 1,714 |
Aktuelle Version | 3.1 |
Letztes Update | 2021-03-09 |
Veröffentlichungsdatum | 2021-02-28 |
Bewertung | 3.82/5 Insgesamt 11 Bewertungen |
Entwickler | matthew.a.kruse |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://EveryoneShouldHaveAVoice.com |
Hilfeseite URL | https://github.com/matt-kruse/talk-time |
URL der Datenschutzrichtlinien-Seite | https://socialfixer.com/privacy.txt |
Unterstützte Sprachen | 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" ] } |