G-meet speaking time tracker.
Tracks people speaking time in order to make the meeting more inclusive.
Was ist G-meet speaking time tracker.?
G-meet speaking time tracker. ist eine Chrome-Erweiterung, die von alcaprar entwickelt wurde, und ihr Hauptmerkmal ist "Tracks people speaking time in order to make the meeting more inclusive.".
Erweiterungsscreenshots
G-meet speaking time tracker.-Erweiterungs-CRX-Datei herunterladen
Laden Sie G-meet speaking time tracker.-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
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
Grundlegende Informationen zur Erweiterung
Name | G-meet speaking time tracker. |
ID | lhnkmjolfffhgbihddcnmajlldgjmabn |
Offizielle URL | https://chromewebstore.google.com/detail/g-meet-speaking-time-trac/lhnkmjolfffhgbihddcnmajlldgjmabn |
Beschreibung | Tracks people speaking time in order to make the meeting more inclusive. |
Dateigröße | 70.36 KB |
Installationsanzahl | 150 |
Aktuelle Version | 0.4.12 |
Letztes Update | 2021-10-28 |
Veröffentlichungsdatum | 2021-02-17 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | alcaprar |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |