Volume Booster Plus

Volume Booster Plus

Volume Booster Plus will increase the system sound up to 1000% from the maximum sound! Boost audio with sound booster extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "manifest_version": 3,
  "description": "__MSG_description__",
  "version": "1.1.0",
  "default_locale": "en",
  "icons": {
    "128": "icon/logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "unlimitedStorage",
    "gcm",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://rumble.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}