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 |
官方網址 | 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 |
電子郵箱 | [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" ] } |