Soundcloud hide reposts

hides reposts in stream

当前为 2015-11-02 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Soundcloud hide reposts
  3. // @namespace m36
  4. // @version 0.2
  5. // @description hides reposts in stream
  6. // @match http://soundcloud.com/stream
  7. // @match https://soundcloud.com/stream
  8. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
  9. // @copyright 2013
  10. // ==/UserScript==
  11. (function () {
  12. function norepost() { $(".soundList__item:has('.actorUser')").remove(); }
  13. window.addEventListener("DOMNodeInserted",norepost, false);
  14. })()