Disable Automatic Gain Control

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

Co to jest Disable Automatic Gain Control?

Disable Automatic Gain Control to rozszerzenie Chrome opracowane przez Joey Watts, a jego główną funkcją jest „Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Disable Automatic Gain Control

Pobierz pliki rozszerzeń Disable Automatic Gain Control w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Disable Automatic Gain Control Disable Automatic Gain Control
ID clpapnmmlmecieknddelobgikompchkk
Oficjalny URL https://chromewebstore.google.com/detail/disable-automatic-gain-co/clpapnmmlmecieknddelobgikompchkk
Opis Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.
Rozmiar pliku 109 KB
Liczba instalacji 56,727
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2021-01-10
Data Publikacji 2020-11-01
Ocena 4.77/5 Łącznie 188 Oceny
Deweloper Joey Watts
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/joeywatts/gmeet-disable-autogain-control-extension
Adres URL Strony Pomocy https://github.com/joeywatts/gmeet-disable-autogain-control-extension/issues/new
Obsługiwane Języki 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:\/\/*\/"
    ]
}