NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name OGame forum fix // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author Deimos // @match https://board.ru.ogame.gameforge.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; let content = document.querySelector("div.content"); content.style = 'background-color: #556'; })();