-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
57 lines (57 loc) · 1.41 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
{
"name": "Hey ChatGPT",
"description": "Feel free to use ChatGPT Everywhere to chat with ChatGPT on your tabs. This extension is not affiliated with ChatGPT in any way.",
"version": "0.1.0",
"manifest_version": 3,
"action": {
"default_popup": "index.html",
"default_title": "Open the popup"
},
"icons": {
"16": "logo600.png",
"48": "logo600.png",
"128": "logo600.png"
},
"host_permissions": [
"https://*.openai.com/"
],
"permissions": [
"activeTab",
"storage"
],
"background": {
"service_worker": "src/apps/Background.ts"
},
"content_scripts": [
{
"matches": [
"http://*.google.com/search*",
"https://*.google.com/search*"
],
"js": [
"src/apps/Google.tsx"
],
"run_at": "document_start"
},
{
"matches": [
"http://*.openai.com/chat*",
"https://*.openai.com/chat*"
],
"js": [
"src/apps/Token.tsx"
],
"run_at": "document_end"
},
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"src/apps/Chat.tsx"
],
"run_at": "document_end"
}
]
}