forked from chathub-dev/chathub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (37 loc) · 905 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
{
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.4.1",
"icons": {
"16": "src/assets/icon.png",
"32": "src/assets/icon.png",
"48": "src/assets/icon.png",
"128": "src/assets/icon.png"
},
"background": {
"service_worker": "src/background/index.ts",
"type": "module"
},
"action": {},
"host_permissions": ["https://*.bing.com/", "https://*.openai.com/"],
"permissions": ["commands", "storage", "tabs"],
"content_scripts": [
{
"matches": ["https://chat.openai.com/chat/*"],
"js": ["src/content-script/chatgpt-inpage-proxy.ts"]
}
],
"commands": {
"open-app": {
"suggested_key": {
"default": "Ctrl+J",
"windows": "Ctrl+J",
"linux": "Ctrl+J",
"mac": "Command+J"
},
"description": "Open ChatHub app"
}
}
}