Disable Automatic Gain Control

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

Cos'è Disable Automatic Gain Control?

Disable Automatic Gain Control è un'estensione di Chrome sviluppata da Joey Watts, e la sua funzione principale è "Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Disable Automatic Gain Control

Scarica i file di estensione Disable Automatic Gain Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Disable Automatic Gain Control Disable Automatic Gain Control
ID clpapnmmlmecieknddelobgikompchkk
URL Ufficiale https://chromewebstore.google.com/detail/disable-automatic-gain-co/clpapnmmlmecieknddelobgikompchkk
Descrizione Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.
Dimensione del File 109 KB
Conteggio Installazioni 56,727
Versione Corrente 1.2
Ultimo Aggiornamento 2021-01-10
Data di Pubblicazione 2020-11-01
Valutazione 4.77/5 Totale 188 Valutazioni
Sviluppatore Joey Watts
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/joeywatts/gmeet-disable-autogain-control-extension
URL della Pagina di Aiuto https://github.com/joeywatts/gmeet-disable-autogain-control-extension/issues/new
Lingue Supportate 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:\/\/*\/"
    ]
}