-
Notifications
You must be signed in to change notification settings - Fork 16
/
manifest.json
53 lines (53 loc) · 1.56 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
{
"manifest_version": 3,
"name": "Leetcode Explained",
"version": "2.2.4",
"description": "Enhances Leetcode problems with solution code, video explanations, and GPT code analysis.",
"icons": {
"16": "src/assets/images/logo/icon-16.png",
"32": "src/assets/images/logo/icon-32.png",
"48": "src/assets/images/logo/icon-48.png",
"128": "src/assets/images/logo/icon-128.png"
},
"action": {
"default_popup": "src/popup/popup.html"
},
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"https://chat.openai.com/api/auth/session",
"https://chatgpt.com/api/auth/session"
],
"background": {
"service_worker": "dist/background/background.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"dist/content-script/get-gpt-access-token.js",
"dist/content-script/get-user-code.js",
"dist/content-script/update-solutions-tab.js",
"dist/content-script/update-description-tab.js",
"dist/content-script/common.js"
],
"matches": [
"https://leetcode.com/problems/*"
]
}
],
"web_accessible_resources": [
{
"resources": [
"src/assets/images/copy-icon.png",
"src/assets/images/check-icon.png",
"src/assets/images/languages/*"
],
"matches": [
"<all_urls>"
]
}
]
}