.itemlist .subtext {display: none;}
Also if we're going to make a snazzy one-liner, let's cut out the unused arguments:
Array.from(document.querySelectorAll("td.subtext")).forEach(currentValue => { currentValue.hidden = true; });