SoundCloud set filter

SoundCloud set filter

Filter your SoundCloud stream to highlight DJ sets and make single songs less prominent. This extension allows you to quicker find…

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 set filter",
  "version": "0.3",
  "permissions": [
    "*://soundcloud.com/",
    "*://api-v2.soundcloud.com/stream"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://soundcloud.com/stream"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}