Files
bulk-delete-chatGPT/manifest.json
2023-04-21 12:33:49 +08:00

29 lines
670 B
JSON

{
"manifest_version": 2,
"name": "ChatGPT Bulk Delete",
"version": "1.0",
"description": "一个批量删除 ChatGPT 对话的 Chrome 插件",
"icons": {
"48": "icon48.png"
},
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html",
"default_title": "批量删除对话"
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["*://chat.openai.com/*"],
"js": ["addCheckboxes.js", "bulkDeleteConversations.js"]
}
]
}