32 lines
706 B
JSON
32 lines
706 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "ChatGPT Bulk Delete",
|
|
"version": "4.6",
|
|
"description": "A Chrome extension to bulk delete ChatGPT conversations",
|
|
"icons": {
|
|
"48": "icon48.png"
|
|
},
|
|
"action": {
|
|
"default_icon": "icon48.png",
|
|
"default_popup": "popup.html",
|
|
"default_title": "Bulk Delete Conversations"
|
|
},
|
|
"permissions": [
|
|
"scripting",
|
|
"activeTab",
|
|
"https://bulk-delete-chatgpt-worker.qcrao.com/*"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://chat.openai.com/*"],
|
|
"js": [
|
|
"globals.js",
|
|
"addCheckboxes.js",
|
|
"bulkDeleteConversations.js",
|
|
"deleteConversations.js"
|
|
],
|
|
"run_at": "document_idle"
|
|
}
|
|
]
|
|
}
|