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 - это расширение Chrome, разработанное Joey Watts, и его основная функция - "Disables the automatic microphone gain control enabled by web applications like Google Meet and Hangouts.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Disable Automatic Gain Control

Скачайте файлы расширений 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:\/\/*\/"
    ]
}