25 lines
539 B
JSON
25 lines
539 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "ChatGPT Bulk Delete",
|
|
"version": "1.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"]
|
|
}
|
|
]
|
|
}
|