-
Notifications
You must be signed in to change notification settings - Fork 759
/
manifest.v2.json
90 lines (90 loc) · 1.86 KB
/
manifest.v2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ChatGPTBox",
"description": "Integrating ChatGPT into your browser deeply, everything you need is here",
"version": "2.5.8",
"manifest_version": 2,
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"permissions": [
"cookies",
"storage",
"contextMenus",
"unlimitedStorage",
"tabs",
"webRequest",
"https://*.chatgpt.com/*",
"https://*.openai.com/",
"https://*.bing.com/",
"wss://*.bing.com/*",
"https://*.poe.com/",
"https://*.google.com/",
"https://claude.ai/",
"https://*.moonshot.cn/*",
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"browser_action": {
"default_popup": "popup.html?popup=true"
},
"options_ui": {
"page": "popup.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*",
"file://*/*"
],
"js": [
"shared.js",
"content-script.js"
],
"css": [
"content-script.css"
]
}
],
"web_accessible_resources": [
"logo.png"
],
"commands": {
"newChat": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "MacCtrl+X"
},
"description": "Create a new chat"
},
"summarizePage": {
"suggested_key": {
"default": "Alt+B",
"mac": "Alt+B"
},
"description": "Summarize this page"
},
"openConversationPage": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"mac": "MacCtrl+Shift+H"
},
"description": "Open the independent conversation page"
},
"openConversationWindow": {
"description": "Open the independent conversation window"
},
"closeAllChats": {
"description": "Close all chats in this page"
}
}
}