Auto Volume Adjustment

Auto Volume Adjustment

Automatically adjusts the volume based on noise levels.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Volume Adjustment",
  "version": "1.4",
  "description": "Automatically adjusts the volume based on noise levels.",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "toggleAwarenessMode": {
      "suggested_key": {
        "default": "Alt+Shift+N"
      },
      "description": "Toggle Awareness Mode"
    }
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Auto Volume Adjustment 1.1"
  },
  "icons": {
    "48": "icons.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}