Advertisement
Guest User

script thing

a guest
Apr 23rd, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. // ==UserScript==
  2. // @name SoundCloud hide reposts
  3. // @namespace http://abs.ezw.me
  4. // @version 1.0
  5. // @author ABS
  6. // @description Only new songs by followed artists in your stream.
  7. // @match *://soundcloud.com/stream
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  9. // ==/UserScript==
  10. (
  11. function(){
  12. function norepost(){
  13. $(".soundList__item:has('.sc-ministats-reposts')").remove();
  14. }
  15. window.addEventListener("DOMNodeInserted",norepost, false);
  16. }
  17. )();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement