NicoDurand
Community Participant

One way is to use the Javascript console and type the following line. It will select all visible checkboxes and you can them delete them all at once:

document.querySelectorAll("input").forEach(e => e.click())

You can also create a bookmark with a slight modification:

javascript:document.querySelectorAll("input").forEach(e => e.click())

View solution in original post

Who Me Too'd this solution