twitcovertanongmail.com / Pirate Bay: keyword & low seeds hider

// ==UserScript==
// @name        Pirate Bay: keyword & low seeds hider
// @namespace   Covert
// @description hide torrents by keyword and seed count
// @include     https://thepiratebay.org/*
// @version     1
// @grant       none
// @require       http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.js
// ==/UserScript==

$(document).ready(function() { 
         
 jQuery.expr[':'].contains = function(obj, index, meta, stack){
 result = false;
 theList = meta[3].split("','");
 var contents = (obj.textContent || obj.innerText || jQuery(obj).text() || '')
 for (x=0;x<theList.length;x++) {
 if (contents.toLowerCase().indexOf(theList[x].toLowerCase()) >= 0) {
 return true;}} return false;};
 
    $("TR .detLink:contains('vixen','the last man','e.last.ma','frontier','westworl','e.affai','day.nigh','ghost.adv','away with murder','tna','notorious','wars rebels','my little','below.zer','macgyve','rosewood','with.murder','z.nati','exorcist','lls.kitch','blue.blood','ers.back','waii.f','boxing.','60.days.','aftermath','low.Deck','younger.s0','the.missin','mate fight','th.park','st.hunte','blackish','chless.','re.the.wo','ucha under','de.black','dbergs','ern.fam','go.med','nal.mind','th park','mpire.201','go.PD','w.and.or','ds.of.holl','nel.zero','no.tomar','am.quee','go.fire','f.the.bo','kims.con','s.in.six','nd.designs','nt.talk','sh.vs.e','NFL','he.midd','in.can.w','freakish','deadbeat','dy proje','an.house','ew.gir','l.onea','o.toma','s.is.u','oot the','bull.201','conviction','st.n.lo','till.da','osh.0','och.mys','ch.fire','ke.gir','tha.bee','nine-nine','ncis','thru h','shamele','he.voi','supergi','wer.2014','t Noir','Poldark','ily Guy','One Punch','rs.Rem','ch Man','f.Sex','t.Mid','al.Su','Ice.R','Greys','SPANi','ESPA','Desi-',' CAM','he Whisp','Extant','us Maid','een Wo','MotoGP','of the Da','WWE','k Matt','he Dome','Defiance','ling Sk','Morty','Baller','Produce','Communi','e a Wo','s Eat','Hannib','Bones','NBA','Ex-Gi','rm and C','iZom','1506','1507','1508','1509','icon V','nny D','UFC','le Li')").parent().parent().parent().css({ "opacity": "0.33" });
    $(".tl TD:contains('.3d.','xxx','hc.hdtv','INESE','desi','[BR]','Dublado','HC HD','HDCAM','Hindi','DVDRip','CAM','HD-TS','XVID','mp4','HDTS','HDRip','SCREEN','HDRip','mkv','ANISH','anish','ENCH','RUS','KOR','Kor')").parent().parent().css({ "display": "none" });
    $(".tl TD").css({"background" : "#151515"});
    $(".tl TD:contains('265')").css({"background" : "#2c2c2c"});
});

// hides torrents by seed count
$(document).ready(function () { var tds = $(':first-child + * + TD[align="right"]').filter(function () { if ($(this).text() < 0 || $(this).text() < 200) { return this; } }); tds.parent().css({ "opacity": "0.33" }); });