Google experts-exchange.com remover

By Roop Last update Oct 6, 2005 — Installed 4,574 times. Daily Installs: 0, 2, 1, 0, 0, 0, 4, 3, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 2, 0, 0, 1, 1, 2, 0, 3
// ==UserScript==
// @name          Google experts-exchange.com remover
// @namespace     http://www.google.com
// @description	  Removes results for any "experts-exchange.com" page from google.
// @include       http://www.google.com/search*
// @include       http://www.google.co.uk/search*
// ==/UserScript==

// Hacked from arantius' "Google about.com remover"
//   http://www.arantius.com/misc/greasemonkey/

var results=document.evaluate('//a[contains(@href, "experts-exchange.com/")]/..', 
	document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var result=null, i=0; result=results.snapshotItem(i); i++) {
	result.style.display='none';
}