first time worked

This commit is contained in:
bob.rao
2023-04-21 12:33:49 +08:00
parent c766e8808c
commit a582bd1120
12 changed files with 209 additions and 859 deletions

7
removeCheckboxes.js Normal file
View File

@@ -0,0 +1,7 @@
(function() {
const removeConversationCheckboxes = document.querySelectorAll('.conversation-checkbox');
removeConversationCheckboxes.forEach(checkbox => {
checkbox.remove();
});
})();