SoundCloud Stream Splitter

SoundCloud Stream Splitter

Splits the SoundCloud stream in tracks and sets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SoundCloud Stream Splitter",
  "version": "1.0",
  "description": "Splits the SoundCloud stream in tracks and sets.",
  "content_scripts": [
    {
      "css": [
        "main.css"
      ],
      "js": [
        "main.js",
        "shared.js"
      ],
      "matches": [
        "https://soundcloud.com/stream",
        "https://soundcloud.com/home",
        "https://soundcloud.com/"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "injected.js"
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  }
}