-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
35 lines (31 loc) · 969 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
{
"manifest_version": 2,
"name": "COVID-19 Tracker",
"short_name": "COVID-19 Tracker",
"version": "0.1.0",
"description": "Track COVID-19 statistics for India and Worldwide.",
"icons": {
"16": "icons/16x16.png",
"32": "icons/32x32.png",
"64": "icons/64x64.png",
"128": "icons/128x128.png"
},
"background": {
"scripts": [
"scripts/axios.min.js",
"scripts/getData.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" ,
"permissions": [
"storage",
"idle",
"unlimitedStorage"
],
"offline_enabled": true,
"browser_action": {
"default_popup": "index.html",
"default_title": "COVID-19 Tracker",
"default_icon": "icons/64x64.png"
}
}