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. เป็นส่วนขยายของ Chrome ที่พัฒนาโดย alcaprar และคุณลักษณะหลักของมันคือ "Tracks people speaking time in order to make the meeting more inclusive."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย G-meet speaking time tracker.
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |