- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2021
07:31 AM
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())