Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LennyPenny/7788633df48608d66aee42fc90623c12 to your computer and use it in GitHub Desktop.
Save LennyPenny/7788633df48608d66aee42fc90623c12 to your computer and use it in GitHub Desktop.
SoundCloudHideReposts - for GreaseMonkey / TamperMonkey
// ==UserScript==
// @name Soundcloud hide reposts
// @namespace https://gist.github.com/noscript
// @version 1.2
// @description hides reposts and playlists 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, Forked 2016, Forked again 2017
// ==/UserScript==
(function () {
function norepost() {
$(".soundList__item:has('.soundContext__repost')").remove();
$(".soundList__item:has('.playlist')").remove();
}
window.addEventListener("DOMNodeInserted",norepost, false);
})() ;
@ottworks
Copy link

👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment