If you ever  do  need to sort the Transmogrifier alphabetically, there's this bookmarklet (one of  The Aaron's Enhancement Pack ), which works only in Chrome:   Sort Transmogrifier list   ref.(  <a href="https://app.roll20.net/forum/permalink/4891027/" rel="nofollow">https://app.roll20.net/forum/permalink/4891027/</a>  )    javascript:$('iframe').contents().find('.objects').each((c,e)=>{ let $e=$(e); $e.children().sort( (a,b)=>{ let name1=$(a).find(".name").text().toLowerCase(), name2=$(b).find(".name").text().toLowerCase(), comp = name1.localeCompare(name2); return comp; }) .each((i,c)=>$e.append(c)); });    This is a bookmarklet that will sort your transmogrifier lists. In Chrome, just make a new bookmark with the above as the link. When you have the transmogrifier open and select this link, it will sort the currently open lists. You'll need to run it again when you choose a new list or after dragging things across to get the list back in order.