Bandcamp Volume Control

Bandcamp Volume Control

Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bandcamp Volume Control",
  "description": "Adds a volume slider to bandcamp album/song pages on the official bandcamp domain and some bandcamp sites with custom domains.",
  "version": "0.2.7",
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.bandcamp.com/*",
        "https://music.monstercat.com/*",
        "https://shop.attackthemusic.com/*",
        "https://listen.20buckspin.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ]
}