Remove Experts Exchange from Google

By JRice Last update May 25, 2007 — Installed 3,694 times.
// ==UserScript==
// @name           No Experts Exchange
// @namespace      JRice
// @description    We HATES them, Exchange, dirty Expertsses!
// @include        http://www.google.com/*
// ==/UserScript==

var count = 0;
list = document.getElementsByTagName('a');
for (i=0; i<list.length; i++) {
  if (list[i].href.match(/experts-exchange/)) {
    if (list[i].className == "l") {
      list[i].parentNode.parentNode.style.display = 'none';
    }
  }
}