Louder

Louder

Let's you to increase audio volume over maximum level.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Louder",
  "description": "The addon allows to boost the sound beyond maximum level.",
  "version": "1.0.1",
  "author": "[email protected]",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "louder.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "contextMenus",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "file:///*/*"
  ],
  "browser_action": {
    "default_icon": "icon19.png"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png"
  },
  "applications": {
    "gecko": {
      "id": "{8ceee5ac-ebc4-4254-9789-e8d8694becf5}",
      "strict_min_version": "42.0"
    }
  }
}