Examine source code of Bandcamp Discover Player

Inspect and view changes in Bandcamp Discover Player 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": 3,
  "name": "bandcamp discover player",
  "description": "controls bandcamp music on the discover page. Adds autoplay, next, previous, play/pause button",
  "browser_specific_settings": {
    "gecko": {
      "id": "{17554d73-68a8-47ca-a648-12ff15139820}",
      "strict_min_version": "58.0"
    },
    "safari": {
      "strict_min_version": "14"
    }
  },
  "version": "0.0.3",
  "icons": {
    "16": "icons/16icon.png",
    "32": "icons/32icon.png",
    "48": "icons/48icon.png",
    "128": "icons/128icon.png"
  },
  "background": {
    "scripts": [
      "jquery-3.7.1.min.js",
      "background_script.js"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "https://bandcamp.com/discover/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "./images/prev.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}