Audio Master mini

Volume Booster helps boost video or music volume sound! Increase volume and bass booster, equalizer. Volume control
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.1.1",
  "action": {
    "default_popup": "src/layouts/popup.html",
    "default_icon": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabCapture",
    "tabs",
    "offscreen",
    "<all_urls>"
  ],
  "background": {
    "service_worker": "src/js/background.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png",
    "512": "icons/icon512.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}