NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Wotlabs.net remove sidebar // @description Removes the sidebar for non-forum pages on wotlabs.net // @version 1 // @grant GM_addStyle // @include https://wotlabs.net/* // @license MIT // ==/UserScript== var sidebar = document.getElementById("sidebar"); sidebar.remove(); var mainContainerFrontPage = document.getElementById("mainContainerFrontPage"); mainContainerFrontPage.style.background = 'none';