Slim Extratorrent

Removes useless content from extratorrent.cc

  1. // ==UserScript==
  2. // @name Slim Extratorrent
  3. // @namespace http://extratorrent.cc/cactuspie
  4. // @description Removes useless content from extratorrent.cc
  5. // @include /^https?://(www\.)?extratorrent\.cc.*/
  6. // @require https://code.jquery.com/jquery-3.1.1.min.js
  7. // @version 1
  8. // @run-at document-end
  9. // ==/UserScript==
  10.  
  11. (function(){
  12. $(".blog_left").first().parent().remove();
  13. $("h2").remove();
  14. $(".tztbl").remove();
  15. $(".tztblpage").remove();
  16. $(".copyrights").remove();
  17. $(".h_search").prop("width", "70%");
  18. $(".stext").prop("style", "width: 100%");
  19. $(".warnIp").parent().remove();
  20. $(".warn3").parent().remove();
  21. $(".warn4").parent().remove();
  22. $(".wrn_txt8").parent().parent().remove();
  23. $("script[src*='adskeeper']").remove();
  24. $("a[href*='adskeeper']").parent().parent().remove();
  25. $("img[src='https://images4et.com/images/other/warning-vpn2.gif']").closest("table").remove();
  26. })();