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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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:\/\/*\/"
    ]
}