Merge pull request #7 from hedongshu/v2.4

V2.4
This commit is contained in:
qcrao
2023-09-15 14:46:47 +08:00
committed by GitHub
2 changed files with 9 additions and 4 deletions

View File

@@ -17,7 +17,7 @@ function preventEventPropagation(event) {
}
function addCheckboxes() {
const conversationSelectors = '.flex.py-3.px-3.items-center.gap-3.relative.rounded-md';
const conversationSelectors = 'div div span div ol li>a.flex';
const titleSelectors = '.flex-1.text-ellipsis.max-h-5.overflow-hidden.break-all.relative';
const conversations = document.querySelectorAll(conversationSelectors);

View File

@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "ChatGPT Bulk Delete",
"version": "2.3",
"version": "2.4",
"description": "A Chrome extension to bulk delete ChatGPT conversations",
"icons": {
"48": "icon48.png"
@@ -17,8 +17,13 @@
],
"content_scripts": [
{
"matches": ["*://chat.openai.com/*"],
"js": ["addCheckboxes.js", "bulkDeleteConversations.js"]
"matches": [
"*://chat.openai.com/*"
],
"js": [
"addCheckboxes.js",
"bulkDeleteConversations.js"
]
}
]
}