Volume Manager PRO

Volume Manager PRO

Volume Booster

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background/core.js",
      "background/main.js",
      "background/listeners.js",
      "background/visualizer.js",
      "/js/update-conf.js",
      "/js/update.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/icon128.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_app_name__"
  },
  "commands": {
    "toggle-down-1": {
      "description": "Volume down",
      "suggested_key": {
        "default": "Alt+Down"
      }
    },
    "toggle-up-1": {
      "description": "Volume up",
      "suggested_key": {
        "default": "Alt+Up"
      }
    }
  },
  "content_scripts": [
    {
      "css": [
        "custom/css/style.css"
      ],
      "js": [
        "custom/js/content.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*",
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_app_description__",
  "icons": {
    "128": "images/icon128.png"
  },
  "manifest_version": 2,
  "name": "Volume Manager PRO",
  "offline_enabled": true,
  "permissions": [
    "tabCapture",
    "activeTab",
    "tabs",
    "storage"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.3.0"
}