-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
64 lines (64 loc) · 1.33 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"manifest_version": 3,
"name": "ChatGPTCustomizer",
"permissions": [
"storage",
"contextMenus"
],
"host_permissions": [
"https://api.openai.com/*"
],
"description": "Customize your assistant using ChatGPT API with multiple profiles.",
"version": "1.6.1",
"options_page": "options.html",
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"playground.html",
"playground.js",
"newplayground.png",
"icon.png",
"copytoclipboard.png",
"copytotextarea.png",
"pinned.png",
"pinnedgrey.png",
"unpinblack.png",
"unpin.png",
"user.png",
"system.png",
"assistant.png",
"importcontext.png",
"exportcontext.png",
"options.png",
"deletecontext.png",
"submit.png",
"options.css"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "options.html",
"default_icon": "icon128.png"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
]
}