Skip to content

Instantly share code, notes, and snippets.

@zaphodddd
Created November 2, 2015 21:02
Show Gist options
  • Save zaphodddd/388c6080e09faf51cb4c to your computer and use it in GitHub Desktop.
Save zaphodddd/388c6080e09faf51cb4c to your computer and use it in GitHub Desktop.
SoundCloudHideReposts - for GreaseMonkey / TamperMonkey - Hide reposts from your soundcloud stream - Nov 2015
// ==UserScript==
// @name Soundcloud hide reposts
// @namespace m36
// @version 0.2
// @description hides reposts in stream
// @match http://soundcloud.com/stream
// @match https://soundcloud.com/stream
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// @copyright 2013, Upated 2015
// ==/UserScript==
(function () {
function norepost() { $(".soundList__item:has('.actorUser')").remove(); }
window.addEventListener("DOMNodeInserted",norepost, false);
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment