-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1004 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
38
39
40
41
{
"manifest_version": 3,
"name": "Streakify",
"version": "1.0.0",
"description": "Track your coding streaks across multiple platforms",
"permissions": [
"storage",
"identity",
"windows"
],
"host_permissions": [
"https://leetcode.com/",
"https://codeforces.com/",
"https://www.codechef.com/",
"https://auth.geeksforgeeks.org/",
"https://www.hackerrank.com/"
],
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "public/icons/icon16.png",
"48": "public/icons/icon48.png",
"128": "public/icons/icon128.png"
}
},
"icons": {
"16": "public/icons/icon16.png",
"48": "public/icons/icon48.png",
"128": "public/icons/icon128.png"
},
"oauth2": {
"client_id": "${CHROME_CLIENT_ID}",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
}
}