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 là gì?
Talk Time for Google Meet là một tiện ích mở rộng Chrome được phát triển bởi matthew.a.kruse, và tính năng chính của nó là "Track and display the talk time and percent of talking time for each participant in a Google Meet".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Talk Time for Google Meet
Tải xuống các tệp mở rộng Talk Time for Google Meet dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Talk Time for Google Meet |
ID | bonlpfoeaoeadalicohkefgpkjplmfbg |
URL Chính Thức | https://chromewebstore.google.com/detail/talk-time-for-google-meet/bonlpfoeaoeadalicohkefgpkjplmfbg |
Mô tả | Track and display the talk time and percent of talking time for each participant in a Google Meet |
Kích Thước Tệp | 61.07 KB |
Số Lần Cài Đặt | 1,714 |
Phiên Bản Hiện Tại | 3.1 |
Cập Nhật Lần Cuối | 2021-03-09 |
Ngày Phát Hành | 2021-02-28 |
Đánh Giá | 3.82/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | matthew.a.kruse |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://EveryoneShouldHaveAVoice.com |
URL Trang Trợ Giúp | https://github.com/matt-kruse/talk-time |
URL Trang Chính Sách Bảo Mật | https://socialfixer.com/privacy.txt |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |