-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
72 lines (72 loc) · 1.9 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "My Resume Site",
"short_name": "Resume",
"description": "This is a Resume site on my portfolio.",
"version": "1.0.0",
"start_url": "/",
"display": "standalone",
"orientation": "any",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"host_permissions": [
"*://cookieinfoscript.com/*",
"*://google-analytics.com/*",
"*://tagmanager.google.com/*",
"*://fonts.googleapis.com/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"static/js/gtag.js",
"static/js/head_tagscript.js",
"static/js/jquery.js",
"static/js/bootstrap.min.js",
"static/js/jquery.singlePageNav.min.js",
"static/js/typed.js",
"static/js/wow.min.js",
"static/js/custom.js",
"static/js/body_tagscript.js",
"static/js/cookieinfo.min.js"
]
}
],
"background": {
"service_worker": "static/js/background.js"
},
"web_accessible_resources": [
{
"resources": [
"static/js/gtag.js",
"static/js/head_tagscript.js",
"static/js/jquery.js",
"static/js/bootstrap.min.js",
"static/js/jquery.singlePageNav.min.js",
"static/js/typed.js",
"static/js/wow.min.js",
"static/js/custom.js",
"static/js/cookieinfo.min.js",
"static/js/body_tagscript.js",
"https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": "script-src 'self' 'nonce-randomNonceValue'; object-src 'self'; 'unsafe-inline' 'unsafe-eval' https://cookieinfoscript.com https://google-analytics.com; object-src 'self';",
"background_color": "#3367D6",
"theme_color": "#3367D6",
"icons": [
{
"src": "/static/fonts/fontawesome-webfont.svg",
"sizes": "512x512",
"type": "image/png"
}
]
}