Disable Automatic Gain Control

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

Was ist Disable Automatic Gain Control?

Disable Automatic Gain Control ist eine Chrome-Erweiterung, die von Joey Watts entwickelt wurde, und ihr Hauptmerkmal ist "Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.".

Erweiterungsscreenshots

screenshot

Disable Automatic Gain Control-Erweiterungs-CRX-Datei herunterladen

Laden Sie Disable Automatic Gain Control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Disable Automatic Gain Control Disable Automatic Gain Control
ID clpapnmmlmecieknddelobgikompchkk
Offizielle URL https://chromewebstore.google.com/detail/disable-automatic-gain-co/clpapnmmlmecieknddelobgikompchkk
Beschreibung Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.
Dateigröße 109 KB
Installationsanzahl 56,727
Aktuelle Version 1.2
Letztes Update 2021-01-10
Veröffentlichungsdatum 2020-11-01
Bewertung 4.77/5 Insgesamt 188 Bewertungen
Entwickler Joey Watts
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/joeywatts/gmeet-disable-autogain-control-extension
Hilfeseite URL https://github.com/joeywatts/gmeet-disable-autogain-control-extension/issues/new
Unterstützte Sprachen 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:\/\/*\/"
    ]
}