Array.from(document.querySelector("#pills-finished > table").rows).slice(1).map(row => {
const [map, time, finishes, lastplayed] = Array.from(row.cells).map(cell => cell.innerText);
return {
map,
time,
finishes,
lastplayed
};
});