GoogleMeet mute the mic

An extension that displays/switches the microphone state of Google Meet by an icon.

GoogleMeet mute the mic란 무엇입니까?

GoogleMeet mute the mic은(는) ssvaluesccg에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that displays/switches the microphone state of Google Meet by an icon."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

GoogleMeet mute the mic 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Google Meet (https://meet.google.com/*) に便利な機能を追加します。
以下の機能があります。
機能1. 自分のマイクの状態によって、マイクアイコンを変化させる。
 ・オン→黒マイク/ON
 ・オフ→赤マイク/mute
これにより、他のタブにいても、自分のマイク状態がどのようになっているか判断することができます。
機能2. マイクアイコンを押すことで、Google Meet上のマイクのオンとオフを切り替えることができる。
 これまでは通話中に、他のタブで調べもの等の作業をしている時、Google Meetのタブに戻らなければ、マイクを切り替えることは困難でした。しかし、この機能により、他のタブで作業をしながらでも、アイコンをクリックするだけで、確実にマイク状態を切り替えることができるようになります。                    

확장 프로그램 기본 정보

이름 GoogleMeet mute the mic GoogleMeet mute the mic
ID dcedgjkbdopfkkbefhmjlnpegjgpolej
공식 URL https://chromewebstore.google.com/detail/googlemeet-mute-the-mic/dcedgjkbdopfkkbefhmjlnpegjgpolej
설명 An extension that displays/switches the microphone state of Google Meet by an icon.
파일 크기 37.64 KB
설치 횟수 262
현재 버전 1.1
최근 업데이트 2021-06-16
출시 날짜 2020-07-09
평점 5.00/5 총 1 개의 평점
개발자 ssvaluesccg
이메일 [email protected]
결제 유형 free
지원되는 언어 ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "An extension that displays\/switches the microphone state of Google Meet by an icon.",
    "name": "GoogleMeet mute the mic",
    "version": "1.1",
    "icons": {
        "16": ".\/img\/mic1.png",
        "48": ".\/img\/mic3.png",
        "128": ".\/img\/mic4.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "browser_action": {
        "name": "Determine if it is muted.",
        "default_icon": ".\/img\/mic2.png"
    }
}