-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 884 Bytes
/
manifest.json
File metadata and controls
34 lines (34 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"manifest_version": 3,
"name": "ChatGPT Bulk Delete",
"version": "6.3",
"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", "identity", "identity.email"],
"host_permissions": ["https://bulk-delete-chatgpt-worker.qcrao.com/*"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["*://chat.openai.com/*", "*://chatgpt.com/*"],
"js": [
"extensionCore.js",
"config.js",
"globals.js",
"utils.js",
"domHandler.js",
"conversationHandler.js",
"checkboxManager.js"
],
"run_at": "document_idle"
}
]
}