Google Meet Mute Toggler

Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.

Google Meet Mute Toggler란 무엇입니까?

Google Meet Mute Toggler은(는) motemen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button."입니다.

확장 프로그램 스크린샷

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

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

확장 프로그램 사용 설명서

                        Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.                    

확장 프로그램 기본 정보

이름 Google Meet Mute Toggler Google Meet Mute Toggler
ID ojdhpiapiiphnknbbgddcfnlagfgpjnp
공식 URL https://chromewebstore.google.com/detail/google-meet-mute-toggler/ojdhpiapiiphnknbbgddcfnlagfgpjnp
설명 Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.
파일 크기 16 KB
설치 횟수 44
현재 버전 1.2.0
최근 업데이트 2021-08-04
출시 날짜 2020-11-11
개발자 motemen
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/motemen/chrome-meet-mute-toggler
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Mute Toggler",
    "version": "1.2.0",
    "browser_action": {
        "default_icon": {
            "32": "assets\/icons\/mic_on.png"
        }
    },
    "permissions": [
        "https:\/\/meet.google.com\/*",
        "tabs"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "commands": {
        "focus": {
            "description": "Focus tab",
            "global": true
        },
        "toggle-mute": {
            "description": "Toggle mute",
            "global": true
        }
    }
}