-
Notifications
You must be signed in to change notification settings - Fork 3
/
webapp-manifest.json
57 lines (56 loc) · 1.51 KB
/
webapp-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
{
"name": "Vibe.JS",
"short_name": "vibe.js",
"description": "Create and test vibrate patterns to use with JavaScript's vibrate API, in a visual way.",
"icons": [
{
"src": "images/icon-128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "images/icon-144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "images/icon-152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "images/icon-192.png",
"sizes": "192x192",
"type": "image/png"
}
],
"start_url": "index.html",
"display": "standalone",
"background_color": "#ffffff",
"orientation": "portrait",
"theme_color": "#ff656f",
"developer": {
"name": "Felipe N. Moura",
"url": "http://felipenmoura.com/"
},
"installs_allowed_from": [
"*"
],
"default_locale": "en",
"permissions": {
},
"locales": {
"pt": {
"name": "VibeJS",
"description": "Crie e teste padrões de vibração para usar com a API vibrate do JavaScript, de forma visual."
},
"es": {
"name": "VibeJS",
"description": ""
},
"en": {
"name": "VibeJS",
"description": "Crea y prueba patrones de vibración para utilizar con la API de vibración de JavaScript, de una manera visual."
}
}
}