You can use a Bookmarklet in Chrome to do this: javascript:(function(){ $("#playerzone .player").css("display", "none"); $("#macrobar_macros").css("white-space", "normal"); $("#macrobar").css("height", "auto"); $("#macrobar_macros .macrobox .btn").each(function(){ $(this).text( $(this).text().replace(/[^:]+: /, $(this).text()[0]+":")); }); $("#initiativewindow").css("width", "100px").parent().css("width", "100px"); })(); Or perhaps the Stylish plugin with a particular style: @-moz-document url-prefix("<a href="https://app.roll20.net/editor" rel="nofollow">https://app.roll20.net/editor</a>") {
#macrobar {
height: auto
}
#macrobar_macros {
white-space: normal
}
#macrobar .macrobox {
margin-bottom: .4em
}
#playerzone.showmacrobar {
padding-bottom: 90px;
}
}
(you might need to adjust that playerzone part to be further up if you have more than 2 rows.)