Disable Automatic Gain Control

Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.

Disable Automatic Gain Control란 무엇입니까?

Disable Automatic Gain Control은(는) Joey Watts에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts."입니다.

확장 프로그램 스크린샷

screenshot

Disable Automatic Gain Control 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This chrome extension disables the automatic gain control enabled on your microphone by web applications like Google Meet. Use this extension if you have a sensitive microphone that doesn't play nice with the browser's automatic gain control.                    

확장 프로그램 기본 정보

이름 Disable Automatic Gain Control Disable Automatic Gain Control
ID clpapnmmlmecieknddelobgikompchkk
공식 URL https://chromewebstore.google.com/detail/disable-automatic-gain-co/clpapnmmlmecieknddelobgikompchkk
설명 Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.
파일 크기 109 KB
설치 횟수 56,727
현재 버전 1.2
최근 업데이트 2021-01-10
출시 날짜 2020-11-01
평점 4.77/5 총 188 개의 평점
개발자 Joey Watts
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/joeywatts/gmeet-disable-autogain-control-extension
도움말 페이지 URL https://github.com/joeywatts/gmeet-disable-autogain-control-extension/issues/new
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable Automatic Gain Control",
    "version": "1.2",
    "description": "Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "disableAutogain.js"
    ],
    "browser_action": [],
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "optional_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}