refresh after remove checkboxes

This commit is contained in:
qcrao
2024-01-12 17:09:40 +08:00
parent 94ca5ca592
commit b265d3b2e3
2 changed files with 3 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "ChatGPT Bulk Delete", "name": "ChatGPT Bulk Delete",
"version": "4.2", "version": "4.3",
"description": "A Chrome extension to bulk delete ChatGPT conversations", "description": "A Chrome extension to bulk delete ChatGPT conversations",
"icons": { "icons": {
"48": "icon48.png" "48": "icon48.png"

View File

@@ -3,5 +3,7 @@
removeConversationCheckboxes.forEach(checkbox => { removeConversationCheckboxes.forEach(checkbox => {
checkbox.remove(); checkbox.remove();
}); });
// 在移除所有复选框后刷新页面
location.reload();
})(); })();