-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
47 lines (47 loc) · 945 Bytes
/
manifest.json
File metadata and controls
47 lines (47 loc) · 945 Bytes
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
{
"name": "LeetCode Pusher",
"version": "1.0",
"manifest_version": 3,
"permissions": [
"identity",
"storage",
"scripting",
"activeTab",
"webNavigation"
],
"oauth2": {
"client_id": "Ov23lidbbczriEkuebBd",
"scopes": ["repo"]
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"https://github.com/*",
"http://localhost:8000/*",
"https://lit1337.up.railway.app/*",
"https://lit1337-dev.up.railway.app/*",
"https://leetcode.com/*"
],
"content_scripts": [
{
"matches": ["https://leetcode.com/*"],
"js": ["config.js", "content.js"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"resources": ["config.js"],
"matches": ["<all_urls>"]
}
],
"externally_connectable": {
"matches": [
"chrome-extension://*/"
]
}
}