Examine source code of sc2mp3

Inspect and view changes in sc2mp3 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": "SoundCloud to MP3",
  "description": "Adds a download button to SoundCloud tracks",
  "browser_specific_settings": {
    "gecko": {
      "id": "sc2mp3@crossbowffs.com"
    }
  },
  "version": "1.8",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.soundcloud.com/*",
    "*://*.sndcdn.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.soundcloud.com/*"
      ],
      "js": [
        "sc2mp3.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  }
}