// ==UserScript== // @name SoundCloud hide reposts (Updated version) // @namespace https://rainbowlabllc.com/ // @version 1.3 // @license MIT // @author nov0id (modded from ABS) // @description Only see new songs in your SoundCloud stream // @match *://soundcloud.com/feed // @downloadURL none // ==/UserScript== function norepost(){ for (let repost of document.getElementsByClassName("soundList__item")) { if (repost.getElementsByClassName("sc-ministats-reposts").length > 0) { repost.remove(); console.log(repost); } } } window.addEventListener("DOMNodeInserted", norepost, false);