Created
November 2, 2015 21:02
-
-
Save zaphodddd/388c6080e09faf51cb4c to your computer and use it in GitHub Desktop.
SoundCloudHideReposts - for GreaseMonkey / TamperMonkey - Hide reposts from your soundcloud stream - Nov 2015
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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