Alright, this was too easy to not do tonight. I took the very very easy route and just required jquery in the script and that made this into literally a one-liner. I might go back and rewrite this to only use raw javascript, but meh, fuck it.
Here's the code for those curious:
Before:
After:
Random Shit
Apparently there's a compatible plugin for Chrome called TamperMonkey...someone try this out there and let us know if it works.
If shit acts weird, let me know and I'll see what I can do to fix it.
If you have other things you want to see blocked, let me know. I don't use the ignore user function so I just did this because it seemed obvious.
Here's the code for those curious:
To install this yourself:// ==UserScript==
// @name Invisible Ignore List
// @namespace IIL
// @description Makes users on your ignore list completely invisible in threads.
// @include http://www.wickedfire.com/*
// @version 1
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js
// ==/UserScript==
$("div.smallfont:contains('This message is hidden because')").parents('.page').each(function(){ $(this).parent().hide()})
- Get GreaseMonkey for Firefox if you don't already have it
- Go here and click "Install": Invisible Ignore List for Greasemonkey
- In Firefox, go to Tools -> Greasemonkey -> Manage User Scripts, then activate the Invisible Ignore List Script
- Enjoy
Before:

After:

Random Shit
Apparently there's a compatible plugin for Chrome called TamperMonkey...someone try this out there and let us know if it works.
If shit acts weird, let me know and I'll see what I can do to fix it.
If you have other things you want to see blocked, let me know. I don't use the ignore user function so I just did this because it seemed obvious.