UserScript: UWE Discussions -> recent NS2 only

WyzcrakWyzcrak Pot Pie Aficionado Join Date: 2002-12-04 Member: 10447Forum Moderators, Constellation, NS2 Playtester, Squad Five Blue
I use this UserScript with TamperMonkey in Chrome to browse to http://forums.unknownworlds.com/discussions and view only NS2 threads. I share it here with dual purpose:

) is there a way to accomplish similar filtering using a stock feature of the UWE forums?

) if not, perhaps someone can take value from the following and/or improve on it in some way
// ==UserScript==
// @match        http://forums.unknownworlds.com/discussions*
// @require      http://code.jquery.com/jquery-latest.js
// @name         Recent NS2 Discussions
// @grant        none
// ==/UserScript==

$(function(){
    $('a[href*="subnautica"]').closest('tr').hide();
    $('tr.Announcement-Everywhere').hide();
});

Comments

Sign In or Register to comment.