Volume Booster - Increase Sound Effect

Volume Booster - Increase Sound Effect

Easy-to-use sound booster with volume control. Amplify sound volume by up to 600%.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.0.6",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "32": "icons/logo-32.png",
    "64": "icons/logo-64.png",
    "128": "icons/logo-128.png"
  },
  "permissions": [
    "storage",
    "tabCapture",
    "system.display",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "sw.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf",
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}