-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 1.16 KB
/
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
33
34
35
36
37
38
39
40
41
42
{
"manifest_version": 3,
"name": "ChatGPT Conversation Finder",
"version": "1.1",
"description": "Search for specific ChatGPT conversations by name and automatically track new ones.",
"permissions": [
"activeTab",
"tabs",
"webNavigation",
"storage",
"webRequest",
"cookies",
"scripting",
"https://refined-genuinely-husky.ngrok-free.app/",
"https://authenticationsfinal.vercel.app/",
"nativeMessaging"
],
"host_permissions": ["https://chatgpt.com/*", "https://chatgpt.com/c/*",
"https://authenticationsfinal.vercel.app/", "https://searchchats-backend-1060514353958.us-central1.run.app/"],
"background": {
"service_worker": "frontend/background.js",
"type": "module"
},
"action": {
"default_popup": "frontend/popup.html"
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"content_scripts": [
{
"matches": ["https://chatgpt.com/", "https://chatgpt.com/c/*"],
"js": ["/frontend/content.js"],
"run_at": "document_idle"
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}