Google Meet Auto Mute

Control the mute function of Google Meet automatically with image recognition and voice recognition.

Google Meet Auto Mute란 무엇입니까?

Google Meet Auto Mute은(는) Morpho, Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control the mute function of Google Meet automatically with image recognition and voice recognition."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Google Meet Auto Mute 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Usage:
1. Open Google Meet and allow the browser to use camera and microphone.
2. Mute control runs automatically based on the results of image recognition and voice recognition.
3. Auto-mute mode can be enabled/disabled by clicking the Auto Mute icon.

For more details, please refer to the link below:
https://github.com/morphoinc/auto_mute

Article about this software (in Japanese):
https://techblog.morphoinc.com/entry/2020/08/03/100007                    

확장 프로그램 기본 정보

이름 Google Meet Auto Mute Google Meet Auto Mute
ID hbjmnnfhadeedfpchjhofclcdohnbfhe
공식 URL https://chromewebstore.google.com/detail/google-meet-auto-mute/hbjmnnfhadeedfpchjhofclcdohnbfhe
설명 Control the mute function of Google Meet automatically with image recognition and voice recognition.
파일 크기 487 KB
설치 횟수 460
현재 버전 1.0.1
최근 업데이트 2020-08-28
출시 날짜 2020-07-26
평점 4.00/5 총 2 개의 평점
개발자 Morpho, Inc.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/morphoinc/auto_mute
개인정보 보호 정책 페이지 URL https://www.morphoinc.com/en/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Auto Mute",
    "version": "1.0.1",
    "description": "Control the mute function of Google Meet automatically with image recognition and voice recognition.",
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "32": "images\/icon32.png",
        "16": "images\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/meet.google.com\/",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "models\/tiny_face_detector_model-shard1",
        "models\/face_landmark_68_tiny_model-shard1",
        "models\/tiny_face_detector_model-weights_manifest.json",
        "models\/face_landmark_68_tiny_model-weights_manifest.json",
        "auto_mute.html"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "auto-mute setting",
        "default_icon": {
            "16": "images\/auto_off16.png",
            "32": "images\/auto_off32.png"
        }
    }
}