Is there a functioning forum ignore script?

As title says, the one linked in the sticky here no longer works (link broken).
Just a lowly standard player. May RNGesus be with you.
Spoiler

// ==UserScript==
// @name PoE Forums Ignore
// @version 0.1
// @description hide unwanted users on PoE forums
// @include https://www.pathofexile.com/forum/view-thread/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js
// ==/UserScript==

ignore_list = ["End_Of_The_World_Is_2016"];

$('.forumTable.forumPostListTable > tbody > tr').each(function() {
var user = $(this).find('.profile-link.post_by_account > a').text();
for (var j = 0 ; j < ignore_list.length; j++){
if (ignore_list[j]==user){
console.log(user+"\n");
$(this).hide();
}

}
});

$('blockquote').each(function() {
var users = $(this).find('.profile-link > a');
for (var i = 0 ; i < users.length ; i++){
var user = users.text;
for (var j = 0 ; j < ignore_list.length; j++){
if (ignore_list[j]==user){
console.log(user+"\n");
$(this).hide();
}

}
}
});
And worst change is putting almost all bosses in new version of maps into fucking small areas, where you can't kite well or dodge stuff. What a terrible idiot invented that I want say to him: dude flick you, seriously flick you very much.
Thank you silumit! Much appreciated.
Just a lowly standard player. May RNGesus be with you.

Report Forum Post

Report Account:

Report Type

Additional Info