G-meet speaking time tracker.
Tracks people speaking time in order to make the meeting more inclusive.
Qu'est-ce que G-meet speaking time tracker. ?
G-meet speaking time tracker. est une extension Chrome développée par alcaprar, et sa fonction principale est "Tracks people speaking time in order to make the meeting more inclusive.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension G-meet speaking time tracker.
Téléchargez les fichiers d'extension G-meet speaking time tracker. 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
This extensions shows the speaking time of each participant next to his/her name. There is also a popup that shows the summary of the meeting, showing the speaking time of all the participants. If you would like to see how long each participant is speaking and balance the discussion among all the players, this extension is for you. Github repo: https://github.com/alessandrocaprarelli/meet-speaking-time
Informations de Base sur l'Extension
Nom | G-meet speaking time tracker. |
ID | lhnkmjolfffhgbihddcnmajlldgjmabn |
URL Officiel | https://chromewebstore.google.com/detail/g-meet-speaking-time-trac/lhnkmjolfffhgbihddcnmajlldgjmabn |
Description | Tracks people speaking time in order to make the meeting more inclusive. |
Taille du Fichier | 70.36 KB |
Nombre d'Installations | 150 |
Version Actuelle | 0.4.12 |
Dernière Mise à Jour | 2021-10-28 |
Date de Publication | 2021-02-17 |
Évaluation | 3.67/5 Total 3 Évaluations |
Développeur | alcaprar |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "G-meet speaking time tracker.", "version": "0.4.12", "description": "Tracks people speaking time in order to make the meeting more inclusive.", "manifest_version": 2, "icons": { "16": "img\/16.png", "48": "img\/48.png", "128": "img\/128.png" }, "permissions": [ "clipboardWrite", "storage", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_start", "js": [ "contentscript.js" ] }, { "matches": [ "*:\/\/*\/*" ], "js": [ "globalcontentscript.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "page": "background.html", "persistent": false }, "browser_action": { "default_popup": "popup.html", "default_icon": "img\/128.png" } } |