Files
bulk-delete-chatGPT/manifest.json
2023-09-15 14:25:08 +08:00

30 lines
579 B
JSON

{
"manifest_version": 3,
"name": "ChatGPT Bulk Delete",
"version": "2.4",
"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"
]
}
]
}