Volume Booster

Volume Booster

Volume Booster helps boost video or music volume sound! Increase volume and bass booster, equalizer. Volume control

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "version": "1.0.11",
  "icons": {
    "16": "image/icon.png",
    "32": "image/icon.png",
    "48": "image/icon.png",
    "128": "image/icon.png"
  },
  "action": {
    "default_icon": {
      "19": "image/icon.png",
      "38": "image/icon.png"
    },
    "default_title": "__MSG_app_name__"
  },
  "background": {
    "service_worker": "js/bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "libs/jquery.min.js",
        "js/volume.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabCapture",
    "storage",
    "system.display"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}