Better Volume Booster

Free and open-source volume booster that remembers your choices.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Better Volume Booster",
  "version": "1.13.0",
  "description": "Volume booster firefox extension that remembers your choices.",
  "icons": {
    "48": "images/icon-512.png",
    "128": "images/icon-512.png",
    "512": "images/icon-512.png"
  },
  "action": {
    "default_popup": "pages/popup.html"
  },
  "options_ui": {
    "page": "pages/options.html",
    "browser_style": false
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "optional_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "declarativeNetRequestWithHostAccess",
    "storage",
    "scripting",
    "cookies",
    "contextMenus"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}