downloadsound.cloud

downloadsound.cloud

Download tracks and playlists from SoundCloud.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "downloadsound.cloud",
  "author": "downloadsound.cloud",
  "version": "0.0.1",
  "description": "Download tracks and playlists from SoundCloud.com",
  "manifest_version": 2,
  "minimum_chrome_version": "74",
  "icons": {
    "512": "icon.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "browser-polyfill.min.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.soundcloud.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}