NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GOG: News Block Relocation // @description Relocate news block on main page GOG.com // @author Eugene Pershin // @match https://www.gog.com/ // @license MIT // @version 1.0 // ==/UserScript== (function () { 'use strict'; window.onload = () => { document.getElementsByClassName('content')[0].children[1].after(document.getElementsByClassName('news-section-wrapper')[0].parentElement); }; })();