|
in case you have an active ignore list like i do
you might like this simple greasemonkey script, which actually removes ignored people from threads, instead of merely hiding them.
// ==UserScript==
// @name Get rid of twats for good
// @namespace noh8
// @include http://www.tranceaddict.com/*
// @require http://ajax.googleapis.com/ajax/lib...1/jquery.min.js
// ==/UserScript==
$(function(){
$('font:contains("This person is on your")').each(function(){$(this).parents().eq(11).remove();});
});
|