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文件

下载Disable Automatic Gain Control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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:\/\/*\/"
    ]
}