Sound booster - tab volume control

Sound booster - tab volume control

Best volume booster Chrome extension, this volume booster for Chrome can increase sound of video and music about max.

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_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.7",
  "browser_action": {
    "default_icon": {
      "16": "img/16.png",
      "32": "img/32.png",
      "48": "img/48.png",
      "128": "img/128.png"
    },
    "default_popup": "/popup.html",
    "default_title": "Volume Booster"
  },
  "icons": {
    "16": "img/16.png",
    "32": "img/32.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "background": {
    "scripts": [
      "/scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/scripts/libs/jquery.min.js",
        "/scripts/content.js"
      ],
      "css": [
        "/styles/content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "tabCapture",
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "/styles/content.css"
  ],
  "commands": {
    "increase_volume": {
      "suggested_key": {
        "default": "Alt+Up"
      },
      "description": "Increase volume"
    },
    "decrease_volume": {
      "suggested_key": {
        "default": "Alt+Down"
      },
      "description": "Decrease volume"
    }
  }
}