Talk Time for Google Meet
Track and display the talk time and percent of talking time for each participant in a Google Meet
Talk Time for Google Meetとは何ですか?
Talk Time for Google Meetはmatthew.a.kruseによって開発されたChromeの拡張機能で、その主な機能は「Track and display the talk time and percent of talking time for each participant in a Google Meet」です。
拡張機能のスクリーンショット
Talk Time for Google Meet拡張機能のCRXファイルをダウンロード
Talk Time for Google Meet拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Talk Time for Google Meet |
ID | bonlpfoeaoeadalicohkefgpkjplmfbg |
公式URL | https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg |
説明 | Track and display the talk time and percent of talking time for each participant in a Google Meet |
ファイルサイズ | 61.07 KB |
インストール数 | 1,714 |
現在のバージョン | 3.1 |
最終更新日 | 2021-03-09 |
公開日 | 2021-02-28 |
評価 | 3.82/5 合計 11 レビュー |
開発者 | matthew.a.kruse |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://EveryoneShouldHaveAVoice.com |
ヘルプページのURL | https://github.com/matt-kruse/talk-time |
プライバシーポリシーページのURL | https://socialfixer.com/privacy.txt |
対応言語 | 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" ] } |