Volume Booster

Volume Booster

Volume Booster helps unleash the power of sound your browser! Increase volume and bass boost of any tab. Volume control

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "default_locale": "en",
  "version": "1.2.1",
  "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"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/scripts/materialize.min.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabCapture",
    "tabs",
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "*.css"
  ]
}