Google Meet Auto Disable Mic/Cam

Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting

Google Meet Auto Disable Mic/Cam란 무엇입니까?

Google Meet Auto Disable Mic/Cam은(는) https://burkybang.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Google Meet Auto Disable Mic/Cam 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This simple extension provides options to default your microphone and camera to disabled. It also displays emojis in the tab title indicating if your microphone is muted or your camera is on.

GitHub: https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam
Firefox version: https://addons.mozilla.org/en-US/firefox/addon/googlemeet-auto-disable-miccam                    

확장 프로그램 기본 정보

이름 Google Meet Auto Disable Mic/Cam Google Meet Auto Disable Mic/Cam
ID dgggcpmnponfpgnifbdohajbdkbgjlhd
공식 URL https://chromewebstore.google.com/detail/google-meet-auto-disable/dgggcpmnponfpgnifbdohajbdkbgjlhd
설명 Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting
파일 크기 20.83 KB
설치 횟수 10,000
현재 버전 3.1.1
최근 업데이트 2023-12-14
출시 날짜 2020-05-20
평점 4.15/5 총 27 개의 평점
개발자 https://burkybang.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam
도움말 페이지 URL https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam/issues
개인정보 보호 정책 페이지 URL https://burkybang.com/extensions/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Auto Disable Mic\/Cam",
    "version": "3.1.1",
    "description": "Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "lib.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}