NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ngu custom // @namespace // @version 1.0 // @description Dark theme for NextGenUpdate // @include http://nextgenupdate.com/forums/* // @include http://www.nextgenupdate.com/forums/* // @exclude http://www.nextgenupdate.com/forums/shoutbox-iframe.php // @copyright 2014-2015 an0ny // @author An0ny // @run-at document-start // ==/UserScript== var link = window.document.createElement('link'); link.rel = 'stylesheet'; link.type = 'text/css'; link.href = 'http://sendpsn.com/ngu/index.css'; document.getElementsByTagName("HEAD")[0].appendChild(link);