Sound booster by AudioMax

Sound booster by AudioMax

Boost sound, enhance bass, control volume, versatile equalizer & convenient volume control. Experience louder music or video volume.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_name__",
  "version": "1.2",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "16": "assets/icon-16.png",
    "32": "assets/icon-32.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png"
  },
  "action": {
    "default_icon": {
      "19": "assets/icon-19.png",
      "38": "assets/icon-38.png"
    },
    "default_popup": "popup.html",
    "default_title": "Volume Booster - Bass Booster"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": false
  },
  "background": {
    "service_worker": "scripts/initialize.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/boost.js",
        "scripts/libs/jquery.min.js"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "commands": {
    "decrease_volume": {
      "description": "Decrease volume",
      "suggested_key": {
        "default": "Alt+Down"
      }
    },
    "increase_volume": {
      "description": "Increase volume",
      "suggested_key": {
        "default": "Alt+Up"
      }
    }
  },
  "update_url": "https://clients2.google.com/service/update2/crx",
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "scripting",
    "tabs"
  ]
}