Max Sound & Volume Control Center

The easiest way to boost sound in the Chrome browser
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "permissions": [
    "<all_urls>",
    "tabCapture",
    "storage"
  ],
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "The easiest way to boost sound in the Chrome browser",
  "version": "1.3",
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/browserfun.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/domload.js"
      ]
    }
  ],
  "icons": {
    "128": "views/img/logo.png"
  },
  "browser_action": {
    "default_icon": "views/img/logo.png",
    "default_popup": "views/index.html"
  }
}