This extension will let you download any track from Soundcloud.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Soundcloud Download",
"description": "This extension will let you download any track from Soundcloud.",
"version": "0.3.6",
"content_scripts": [
{
"matches": [
"https://*.soundcloud.com/*"
],
"css": [
"styles.css"
],
"js": [
"content-script.js"
]
}
],
"background": {
"scripts": [
"browser-id3-writer.js",
"crunker.js",
"background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "assets/icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "assets/icon.png",
"48": "assets/icon-48.png",
"128": "assets/icon-128.png"
},
"permissions": [
"https://*.soundcloud.com/*",
"tabs",
"webRequest",
"downloads",
"webNavigation",
"storage"
],
"web_accessible_resources": [
"assets/*"
]
}