SoundShroud

SoundShroud

De-clutter your SoundCloud Stream

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SoundShroud",
  "permissions": [
    "storage",
    "https://script.google.com/macros/s/AKfycbyCUDY1dT3WtEhiqJ0t8k5AzCk2akxMPZkfQmYm2IoFz5-DZ1zv/exec"
  ],
  "version": "2.0.1",
  "manifest_version": 2,
  "description": "De-clutter your SoundCloud Stream",
  "icons": {
    "128": "images/soundshroud.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/popup.js",
        "scripts/jquery.2.1.3-min.js",
        "scripts/underscore-min.js"
      ],
      "css": [
        "styles/main.css",
        "styles/iosbutton.css"
      ],
      "matches": [
        "https://soundcloud.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/chromereload.js",
      "scripts/background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_icon": {
      "19": "images/soundshroud.png",
      "38": "images/soundshroud.png"
    },
    "default_title": "SoundShroud",
    "default_popup": "popup.html",
    "matches": [
      "https://soundcloud.com/*"
    ]
  },
  "web_accessible_resources": [
    "images/soundshroud.png",
    "images/facebook.png",
    "images/twitter.png"
  ]
}