-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
43 lines (43 loc) · 1.47 KB
/
manifest.json
File metadata and controls
43 lines (43 loc) · 1.47 KB
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
{
"manifest_version": 3,
"name": "SolveSync – Automate Your LeetCode Solutions to GitHub",
"version": "1.0.3",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAs5E+MAg9biZqlEMfSs0GXUaqwlVVPbLTQSfedXpt6zBZugI4RhhbhrIbjbQeOTBUywjpJe0XenGWiGg2lolOEmr/MSFwqgF/SjSTEiREBCXUF9mOcrNPAlNm8n3EnXk5m9JNblCxwBXLDrVlnJodJCGHjts/50cu03NJXL+UdO2r9CMdymSYrQ1Xs7Mhfo2ijc6vpaGx18cD7z0cgxomYZUrx8ld96cn1gZUzet+JJvBhY/aVbHtuTnsIG2itfqSQ1HJ2svSZ6zsmizlp4hCc1dhj2VprJHMaSaiMWVKM4N5C0/IFiAKs9kKp1zJn7d6d06g/SZILU73V0BPsT6ZSwIDAQAB",
"description": "Automate your LeetCode solution uploads to GitHub, organized by difficulty with auto-generated README files.",
"icons": {
"16": "images/app-icon.png",
"32": "images/app-icon.png",
"48": "images/app-icon.png",
"128": "images/app-icon.png"
},
"permissions": ["identity", "storage"],
"host_permissions": [
"https://leetcode.com/*",
"https://github.com/*",
"https://solvesync-backend.onrender.com/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup/popup.html"
},
"oauth2": {
"client_id": "Ov23lik3RKBt8FYYNzaV",
"scopes": ["repo"]
},
"externally_connectable": {
"matches": ["*://leetcode.com/*"]
},
"content_security_policy": {
"script-src": "'self'",
"object-src": "'self'"
},
"content_scripts": [
{
"matches": ["https://leetcode.com/problems/*"],
"js": ["scripts/leetcode.js"],
"run_at": "document_idle"
}
]
}