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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย matthew.a.kruse และคุณลักษณะหลักของมันคือ "Track and display the talk time and percent of talking time for each participant in a Google Meet"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Talk Time for Google Meet

ดาวน์โหลดไฟล์ส่วนขยาย 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 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
อีเมล [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"
    ]
}