Forked from zaphodddd/SoundCloudHideReposts0.2.user.js
Last active
April 13, 2017 14:33
-
-
Save noscript/c4c78aa505b89f2618e43272054a6737 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 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