Examine source code of Native SC Downloader

Inspect and view changes in Native SC Downloader 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
{
  "name": "Native SC Downloader",
  "version": "1.1.4",
  "manifest_version": 3,
  "description": "Get all your favorite MP3s from SoundCloud with ease using this native and straightforward MP3 SoundCloud Downloader!.",
  "icons": {
    "32": "32.png",
    "64": "64.png",
    "128": "128.png",
    "512": "512.png"
  },
  "action": {
    "default_title": "Native SC Downloader",
    "default_popup": "popup.html",
    "default_icon": "32.png"
  },
  "host_permissions": [
    "https://*.soundcloud.com/*",
    "https://*.sndcdn.com/*"
  ],
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.soundcloud.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}