G-meet speaking time tracker.
Tracks people speaking time in order to make the meeting more inclusive.
什么是G-meet speaking time tracker.?
G-meet speaking time tracker.是由alcaprar开发的Chrome扩展程序,该扩展的主要功能是“Tracks people speaking time in order to make the meeting more inclusive.”。
扩展截图
下载G-meet speaking time tracker.扩展crx文件
下载G-meet speaking time tracker.扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | G-meet speaking time tracker. |
ID | lhnkmjolfffhgbihddcnmajlldgjmabn |
官方URL | https://chromewebstore.google.com/detail/g-meet-speaking-time-trac/lhnkmjolfffhgbihddcnmajlldgjmabn |
简介 | Tracks people speaking time in order to make the meeting more inclusive. |
文件大小 | 70.36 KB |
安装次数 | 150 |
当前版本 | 0.4.12 |
更新时间 | 2021-10-28 |
上架时间 | 2021-02-17 |
评分 | 3.67/5 共3次评分 |
开发者 | alcaprar |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |