Volume Amplifier - Sound Booster for Chrome

Volume Amplifier - Sound Booster for Chrome

A volume manager that enhances your system! Boost audio in any tab including YouTube, Twitch, and others. A volume manager that really works!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "description": "__MSG_description__",
  "version": "1.0.3",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "64": "assets/icon.png"
  },
  "permissions": [
    "tabCapture",
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "__MSG_extName__",
    "default_icon": "assets/icon.png"
  },
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "assets/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}