Volume Booster - Increase your sound

Volume Booster - Increase your sound

Unleash the power of sound on your Edge browser! Increase volume to max level and control the it of any tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "version": "1.1.8",
  "icons": {
    "16": "assets/icon-logo.png",
    "32": "assets/icon-logo.png",
    "48": "assets/icon-logo.png",
    "128": "assets/icon-logo.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "assets/icon-logo.png",
      "38": "assets/icon-logo.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_app_name__"
  },
  "background": {
    "scripts": [
      "scripts/bg.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/libs/jquery.min.js",
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabCapture",
    "tabs",
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "*.css"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}