Files
bulk-delete-chatGPT/removeCheckboxes.js

9 lines
267 B
JavaScript

function removeCheckboxesAndReload() {
const checkboxes = document.querySelectorAll(`.${CHECKBOX_CLASS}`);
checkboxes.forEach(checkbox => checkbox.remove());
// Refresh the page after removing all checkboxes
location.reload();
}
removeCheckboxesAndReload();