Sound Booster

Sound Booster

Increase and amplify your max volume.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Sound Booster",
  "default_locale": "en",
  "description": "__MSG_app_description__",
  "icons": {
    "16": "16.png",
    "19": "19.png",
    "48": "48.png",
    "128": "128.png"
  },
  "version": "0.1.5",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    }
  ]
}