[javascript]
/*
* I’m using this with Chrome addon Shortcut Manager
*
*/
$(‘.seeders’).each(function(){
if ($(this).text() > 100) {
$(this).parent().find(‘.name a’).css(‘color’,’#000′);
$(this).parent().css(‘color’,’#000′);
$(this).parent().css(‘background-color’,’#FFFF99′);
}
});
$(‘.leechers’).each(function(){
if ($(this).text() > 100) {
$(this).parent().find(‘.name a’).css(‘color’,’#000′);
$(this).parent().css(‘color’,’#000′);
$(this).parent().css(‘background-color’,’#FFFF66′);
}
});
[/javascript]