vBulletin - Full ignore

By Mithrandir Last update Mar 29, 2008 — Installed 113 times.
// ==UserScript==
// @name         vBulletin - Full ignore
// @namespace    http://userscripts.org/people/5587
// @description  Stops display of truncated posts from users on your ignore list.
// @source       http://userscripts.org/scripts/show/24465
// @identifier   http://userscripts.org/scripts/source/24465.user.js
// @version      1.01
// @date         2008-03-29
// @creator      Arne Dieckmann (aka "Mithrandir")
// @include      */showthread.php*
// ==/UserScript==

(function (){
var filterkey = "profile.php?userlist=ignore&do=removelist&u=";

var allElements, thisElement;
allElements = document.getElementsByTagName('tr');
for (var i = 0; i < allElements.length; i++) {
  thisElement = allElements[i];
  if(thisElement.innerHTML.indexOf(filterkey)!=-1)
    {
    thisElement.parentNode.style.display = 'none';
    }
  }
}());