Volume Booster

Volume Booster

Boost Volume up to 600%

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Volume Booster",
  "description": "Boost Volume up to 600%",
  "version": "0.3",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon/16.png",
      "32": "icon/32.png"
    },
    "default_popup": "html/popup.html",
    "default_title": "Volume Booster"
  },
  "background": {
    "scripts": [
      "js/background.js",
      "js/backgroundScript.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/contentScipt.js"
      ],
      "run_at": "document_start",
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "permissions": [
    "tabCapture",
    "activeTab",
    "tabs",
    "storage"
  ]
}