first time worked

This commit is contained in:
bob.rao
2023-04-21 12:33:49 +08:00
parent c766e8808c
commit a582bd1120
12 changed files with 209 additions and 859 deletions

View File

@@ -1,27 +1,28 @@
{
"manifest_version": 2,
"name": "Bulk Delete ChatGPT Conversations",
"name": "ChatGPT Bulk Delete",
"version": "1.0",
"description": "A Chrome extension to bulk delete ChatGPT conversations.",
"description": "一个批量删除 ChatGPT 对话的 Chrome 插件",
"icons": {
"48": "icon48.png"
},
"permissions": [
"activeTab",
"storage",
"declarativeContent",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html"
"default_popup": "popup.html",
"default_title": "批量删除对话"
},
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"content_scripts": [
{
"matches": ["https://chat.openai.com/*"],
"js": ["content.js"]
"matches": ["*://chat.openai.com/*"],
"js": ["addCheckboxes.js", "bulkDeleteConversations.js"]
}
]
}