This repository has been archived by the owner on Dec 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpwa-manifest.json
52 lines (52 loc) · 1.6 KB
/
pwa-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
{
"name": "Angular 官方文档中文版",
"short_name": "angular.cn",
"background_color": "#1976d2",
"theme_color": "#1976d2",
"display": "standalone",
"icons": [
{
"src": "assets/images/favicons/favicon-194x194.png",
"sizes": "194x194 512x512",
"type": "image/png"
},
{
"src": "assets/images/favicons/favicon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "assets/images/favicons/favicon-144x144-maskable.png",
"sizes": "144x144",
"type": "image/png",
"purpose": "maskable"
}
],
"start_url": "/?utm_source=homescreen",
"shortcuts": [
{
"name": "Go to API Reference",
"short_name": "API",
"description": "Go to the Angular API reference page.",
"url": "/api?utm_source=homescreen"
},
{
"name": "Go to Glossary",
"short_name": "Glossary",
"description": "Go to the glossary page: A list of common Angular terms and their explanation.",
"url": "/guide/glossary?utm_source=homescreen"
},
{
"name": "Go to Resources",
"short_name": "Resources",
"description": "Go to the resources page: A list of Angular resouces, such as development tooling, UI libraries, books, courses, community publications, podcasts, etc.",
"url": "/resources?utm_source=homescreen"
},
{
"name": "Go to Tutorial: Tour of Heroes",
"short_name": "Tutorial",
"description": "Go to the \"Tour of Heroes\" tutorial page: Learn how to create your first Angular application.",
"url": "/tutorial?utm_source=homescreen"
}
]
}