Disable Automatic Gain Control

Disable Automatic Gain Control

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

Merlin
Additional files are visible only to premium users

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