-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
44 lines (44 loc) · 1.41 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
{
"manifest_version": 2,
"name": "Live Coronavirus status",
"description": "Real time live Coronavirus updates",
"version": "1.1.0",
"short_name": "Coronavirus Tracker",
"version_name": "coronatracker-1.0",
"content_security_policy": "script-src https://coronavirus-monitor.p.rapidapi.com/coronavirus/worldstat.php https://coronavirus-monitor.p.rapidapi.com/coronavirus/cases_by_country.php 'sha256-fYzMt+XmqxxG9xsg3AAdPSnRVzESbzYmVfYTFhb9w7g=' 'self';style-src 'unsafe-inline' 'unsafe-eval' 'self'; object-src 'self'",
"icons": {
"128": "corona128.png"
},
"browser_action": {
"default_title": "Coronatime",
"default_icon": {
"128": "corona128.png"
},
"default_popup": "index.html"
},
"background": {
"scripts": [
"./assets/js/jquery.js",
"./assets/js/shCore.js",
"./assets/js/demo.js",
"./assets/js/jquery.dataTables.js"
],
"persistent": true
},
"content_scripts":[
{
"matches": ["http://*/*", "https://*/*"],
"css":[
"./assets/css/jquery.dataTables.css",
"./assets/css/shCore.css",
"./assets/css/demo.css"
],
"js": [
"./assets/js/jquery.js",
"./assets/js/shCore.js",
"./assets/js/demo.js",
"./assets/js/jquery.dataTables.js"
]
}
]
}