-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest-v3.json
48 lines (48 loc) · 954 Bytes
/
manifest-v3.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
{
"manifest_version": 3,
"name": "Voice Mode Chat",
"description": "Adds chat retrieval to ChatGPT to allow you to view chats from Advanced Voice Mode.",
"version": "0.0.1",
"author": "Devon Crebbin",
"action": {
"default_icon": {
"128": "icon128.png"
}
},
"icons": {
"128": "icon128.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://www.chatgpt.com/*",
"https://chatgpt.com/*",
"https://chat.com/*",
"https://www.chat.com/*"
],
"js": [
"src/pages/content/index.tsx"
]
}
],
"web_accessible_resources": [
{
"resources": [
"icon128.png",
"icon48.png",
"icon38.png",
"icon32.png",
"icon19.png",
"icon16.png",
"ai-icon.png"
],
"matches": [
"https://*.chat.com/*",
"https://*.chatgpt.com/*"
]
}
]
}