Examine source code of Bandcamp Volume Slider

Inspect and view changes in Bandcamp Volume Slider source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "BandcampVolume",
  "version": "1.1.0",
  "author": "Jacob T. Pfeiffer",
  "applications": {
    "gecko": {
      "strict_min_version": "52.0"
    }
  },
  "description": "Adds volume slider to bandcamp music pages",
  "homepage_url": "https://github.com/Cthuflu/BandcampVolume",
  "icons": {},
  "content_scripts": [
    {
      "exclude_matches": [
        "*://*.bandcamp.com/music"
      ],
      "matches": [
        "*://*.bandcamp.com/*"
      ],
      "js": [
        "tabVolume.js"
      ],
      "css": [
        "sliderStyle.css"
      ],
      "run_at": "document_idle"
    }
  ]
}