Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save noscript/c4c78aa505b89f2618e43272054a6737 to your computer and use it in GitHub Desktop.
Save noscript/c4c78aa505b89f2618e43272054a6737 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 https://gist.github.com/noscript
// @downloadURL https://gist.github.com/noscript/c4c78aa505b89f2618e43272054a6737/raw/SoundCloudHideReposts.user.js
// @version 1.1
// @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, Forked 2016
// ==/UserScript==
(function () {
function norepost() { $(".soundList__item:has('.soundContext__repost')").remove(); }
window.addEventListener("DOMNodeInserted",norepost, false);
})() ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment