-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
47 lines (47 loc) · 959 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"manifest_version": 2,
"name": "ChatGPT Session Manager",
"version": "1.4",
"description": "Enables teams to collaborate on chat responses using ChatGPT",
"permissions": [
"webRequest",
"activeTab",
"storage",
"webRequestBlocking",
"webNavigation",
"https://k8s.haidinger.me/*",
"https://chat.openai.com/*"
],
"icons": {
"48": "icons/logo-48.png",
"96": "icons/logo-96.png"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icons/logo-48.png",
"96": "icons/logo-96.png"
}
},
"background": {
"scripts": [
"./background.js"
],
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://chat.openai.com/*"
],
"js": [
"content-script.js"
]
}
],
"browser_specific_settings": {
"gecko": {
"update_url": "https://k8s.haidinger.me/firefox/updates.json"
}
}
}