UserScript: UWE Discussions -> recent NS2 only
Wyzcrak
Pot Pie Aficionado Join Date: 2002-12-04 Member: 10447Forum Moderators, Constellation, NS2 Playtester, Squad Five Blue
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
) 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
And no otherwise there is no way to filter out not ns2 related posts beside using user-scripts.
Other links that may be of use are:
http://forums.unknownworlds.com/categories/general
http://forums.unknownworlds.com/categories/general-discussion
If you want more than just general ns2 posts:
http://forums.unknownworlds.com/categories/ideas-and-suggestions
http://forums.unknownworlds.com/categories/modding
FWIW, /my/ strong preference is for one list arranged primarily by activity, not sub-category or author role.
That is where most activity happens on these forums.