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"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Talk Time for Google Meet 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}