Bandcamp Volume

Bandcamp Volume

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bandcamp Volume",
  "short_name": "Bandcamp Volume",
  "description": "",
  "version": "0.0.4",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*.bandcamp.com/*",
        "https://*.bandcamp.com/*",
        "http://bandcamp.com/*",
        "https://bandcamp.com/*"
      ],
      "js": [
        "jquery.js",
        "jqueryui.js",
        "main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "style.css"
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "jqueryui.js"
    ],
    "persistent": false
  }
}