-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmanifest.json
32 lines (32 loc) · 851 Bytes
/
manifest.json
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
{
"manifest_version": 3,
"name": "ChatGPT Bulk Delete",
"version": "5.9",
"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": [
"globals.js",
"utils.js",
"addCheckboxes.js",
"bulkDeleteConversations.js",
"bulkArchiveConversations.js"
],
"run_at": "document_idle"
}
]
}