Talk Time for Google Meet
Track and display the talk time and percent of talking time for each participant in a Google Meet
Qu'est-ce que Talk Time for Google Meet ?
Talk Time for Google Meet est une extension Chrome développée par matthew.a.kruse, et sa fonction principale est "Track and display the talk time and percent of talking time for each participant in a Google Meet".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Talk Time for Google Meet
Téléchargez les fichiers d'extension Talk Time for Google Meet au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Talk Time for Google Meet |
ID | bonlpfoeaoeadalicohkefgpkjplmfbg |
URL Officiel | https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg |
Description | Track and display the talk time and percent of talking time for each participant in a Google Meet |
Taille du Fichier | 61.07 KB |
Nombre d'Installations | 1,714 |
Version Actuelle | 3.1 |
Dernière Mise à Jour | 2021-03-09 |
Date de Publication | 2021-02-28 |
Évaluation | 3.82/5 Total 11 Évaluations |
Développeur | matthew.a.kruse |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://EveryoneShouldHaveAVoice.com |
URL de la Page d'Aide | https://github.com/matt-kruse/talk-time |
URL de la Page de Politique de Confidentialité | https://socialfixer.com/privacy.txt |
Langues Prises en Charge | 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" ] } |