Add a bookmark using this code as the location. Click to pop up an alert box with a crude CSV of the current queue + history.
javascript:(() => { histitems = []; document.querySelectorAll('.jukebox__item').forEach((item) => { histitem = []; item.querySelectorAll('div[class^="item"]').forEach((child) => { histitem.push('"' + child.innerText.replace(/"/g, '""') + '"'); }); histitems.push(histitem.join(',')); }); alert(histitems.join("\n")); })()