upgrade to manifest_version v3

This commit is contained in:
bob.rao
2023-04-22 11:42:05 +08:00
parent e6809833c9
commit 8ac1adabdc
3 changed files with 67 additions and 34 deletions

View File

@@ -1,29 +1,24 @@
{
"manifest_version": 2,
"name": "ChatGPT Bulk Delete",
"version": "1.0",
"description": "A Chrome extension to bulk delete ChatGPT conversations",
"icons": {
"48": "icon48.png"
},
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html",
"default_title": "Bulk Delete Conversations"
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://chat.openai.com/*"],
"js": ["addCheckboxes.js", "bulkDeleteConversations.js"]
}
]
}
"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"]
}
]
}