Created
September 4, 2017 07:01
-
-
Save lancehilliard/d84ee62259038f37bf044308c1a7aad8 to your computer and use it in GitHub Desktop.
Shows only non-webbed NS2 threads in UWE Discussions display
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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