Hide comment from torrent list

hide torrent comment from torrent list.

  1. // ==UserScript==
  2. // @name Hide comment from torrent list
  3. // @namespace Sality
  4. // @description hide torrent comment from torrent list.
  5. // @include *kat.cr/*
  6. // @version 0.1 Beta
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10.  
  11. try{
  12. var pathname = window.location.pathname;
  13. //Spam Testing script -----------------------------------------------------------------------------------------------------------------------------------------------
  14. if ((pathname.indexOf('\/user\/') != 0)&&(pathname.indexOf('\/community\/') != 0)&&(pathname.indexOf('\/messenger\/') != 0)){
  15. if ($('div.mainpart table.data').length) {
  16. $('table.data div.iaconbox a.icommentjs').css({"display":"none"});
  17. }
  18. }
  19.  
  20. }//try end
  21. catch(ex){
  22. console.log("Hide comment :Error IN script /Page . Inform Sality");
  23. }