Disable Automatic Gain Control

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

What is Disable Automatic Gain Control?

Disable Automatic Gain Control is a Chrome extension developed by Joey Watts, and its main feature is "Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.".

Extension Screenshots

screenshot

Download Disable Automatic Gain Control Extension CRX File

Download Disable Automatic Gain Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Disable Automatic Gain Control Disable Automatic Gain Control
ID clpapnmmlmecieknddelobgikompchkk
Official URL https://chromewebstore.google.com/detail/disable-automatic-gain-co/clpapnmmlmecieknddelobgikompchkk
Description Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.
File Size 109 KB
Installation Count 56,727
Current Version 1.2
Last Updated 2021-01-10
Publish Date 2020-11-01
Rating 4.77/5 Total 188 Ratings
Developer Joey Watts
Email [email protected]
Payment Type free
Extension Website https://github.com/joeywatts/gmeet-disable-autogain-control-extension
Help Page URL https://github.com/joeywatts/gmeet-disable-autogain-control-extension/issues/new
Supported Languages 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:\/\/*\/"
    ]
}