AudioBoost

AudioBoost

Increase the volume of audio on a tab, making quiet sounds louder and limiting loud sounds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Increase the volume of audio on a tab, making quiet sounds louder and limiting loud sounds.",
  "manifest_version": 2,
  "name": "AudioBoost",
  "version": "0.3",
  "icons": {
    "48": "icons/audioboost-disabled.png",
    "96": "icons/audioboost-disabled.png"
  },
  "background": {
    "scripts": [
      "audioboost.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "48": "icons/audioboost-disabled.png",
      "96": "icons/[email protected]"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "audioboost.js"
      ],
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{0656ee25-0101-48d8-aa3d-7f137de455e4}"
    }
  }
}