Talk Time for Google Meet
Track and display the talk time and percent of talking time for each participant in a Google Meet
Co to jest Talk Time for Google Meet?
Talk Time for Google Meet to rozszerzenie Chrome opracowane przez matthew.a.kruse, a jego główną funkcją jest „Track and display the talk time and percent of talking time for each participant in a Google Meet”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Talk Time for Google Meet
Pobierz pliki rozszerzeń Talk Time for Google Meet w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Talk Time for Google Meet |
ID | bonlpfoeaoeadalicohkefgpkjplmfbg |
Oficjalny URL | https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg |
Opis | Track and display the talk time and percent of talking time for each participant in a Google Meet |
Rozmiar pliku | 61.07 KB |
Liczba instalacji | 1,714 |
Aktualna Wersja | 3.1 |
Ostatnia Aktualizacja | 2021-03-09 |
Data Publikacji | 2021-02-28 |
Ocena | 3.82/5 Łącznie 11 Oceny |
Deweloper | matthew.a.kruse |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://EveryoneShouldHaveAVoice.com |
Adres URL Strony Pomocy | https://github.com/matt-kruse/talk-time |
Adres URL Strony Polityki Prywatności | https://socialfixer.com/privacy.txt |
Obsługiwane Języki | 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" ] } |