Sound Booster - Boost My Bass

Sound Booster - Boost My Bass

Boost your video and music volume sound. Increase the volume to the max level and control it of any tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "3.3.1",
  "default_locale": "en",
  "manifest_version": 2,
  "icons": {
    "32": "assets/static/128.png",
    "64": "assets/static/128.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "tabCapture",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content-booster.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_title": "__MSG_title__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "static/*",
    "assets/*.svg",
    "assets/*.png",
    "assets/*.css",
    "assets/*.otf",
    "*.css"
  ]
}