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:\/\/*\/"
    ]
}