Skip to content

Instantly share code, notes, and snippets.

@lancehilliard
Created September 4, 2017 07:01
Show Gist options
  • Save lancehilliard/d84ee62259038f37bf044308c1a7aad8 to your computer and use it in GitHub Desktop.
Save lancehilliard/d84ee62259038f37bf044308c1a7aad8 to your computer and use it in GitHub Desktop.
Shows only non-webbed NS2 threads in UWE Discussions display
// ==UserScript==
// @name NS2-only UWE Discussions
// @match https://forums.unknownworlds.com/discussions*
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==
(function() {
$('a[href*="subnautica"], a[href*="off-topic"], a[href*="other-discussions"], span[title="Webbed"]').closest('tr').hide();
setTimeout(function(){
$("html,body").animate({scrollTop: 400}, 1);
}, 500);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment