Files
bulk-delete-chatGPT/manifest.json
2023-04-22 11:42:05 +08:00

25 lines
539 B
JSON

{
"manifest_version": 3,
"name": "ChatGPT Bulk Delete",
"version": "1.0",
"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"
],
"content_scripts": [
{
"matches": ["*://chat.openai.com/*"],
"js": ["addCheckboxes.js", "bulkDeleteConversations.js"]
}
]
}