First you will need to be using firefox, Second you need to install greasemonkey extension.
Greasemonkey allows you to easily run user scripts on specific pages, this is also a good way to remove ads from pages and get rid of the forward crap on ign and fileplanet. Check the site these scripts are already there.
Now to get the ignore function working, copy the text bellow into notepad or another text editor.
Code: Select all
// ==UserScript==
// @name Quake3World Ignore
// @namespace http://www.quake3world.com/forum/
// @description Quake3World Ignore
// @include http://www.quake3world.com/forum/*
// ==/UserScript==
(
function()
{ var xpe=new XPathEvaluator();
var tr,trs;
trs=xpe.evaluate("//tr//tr[.//b[contains('?Testoclesius?member2?',concat('?',.,'?'))]]",
document,null,XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,null);
var trs2=[];
for(i=0;i<trs.snapshotLength;++i) { trs2.push(trs.snapshotItem(i)); }
for(i=0;i<trs2.length;++i) {
tr=trs2[i];
tr.parentNode.removeChild(tr);
}
}
)();Also make sure to spell the name with the correct capitals.
Now save the file as "q3w.user.js" and make sure the type is "All files" so it doesn't have a txt extention.
Open firefox go to File > Open File and locate q3w.user.js, now go to Tools > Install User Script, a window will pop up click okay and you are done.
Here is an example of how it looks like:

This method works very fast, enjoy. :icon31:
