NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Redmine Resize // @namespace Jaidon // @version 0.2 // @description Resizes redmine issues content and sidebar // @author jaidon // @licence MIT // @updateURL https://openuserjs.org/meta/jjr2000/Redmine_Resize.meta.js // @include http://demo.redmine.org/projects/* // @include */redmine/projects/* // @grant none // ==/UserScript== document.getElementById("content").style.width = "87%"; document.getElementById("sidebar").style.width = "10%";