-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.webapp
70 lines (70 loc) · 1.76 KB
/
manifest.webapp
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
{
"name": "Bing Wallpaper",
"display": "Bing Wallpaper",
"version": "1.0.0",
"subtitle": "Beautiful wallpapers daily",
"description": "Beautiful wallpapers from Bing, available daily. Not affiliated with nor endorsed by Microsoft Corporation.",
"type": "privileged",
"launch_path": "/index.html",
"icons": {
"56": "/logo_56.png",
"112": "/logo_112.png"
},
"categories": [
"utilities"
],
"theme_color": "#00897b",
"developer": {
"name": "Last Byte LLC",
"url": "https://github.com/Tombarr"
},
"cursor": false,
"fullscreen": false,
"chrome": {
"statusbar": "overlap"
},
"dependencies": {
"ads-sdk": "1.5.5"
},
"permissions": {
"settings:wallpaper.image": {
"description": "Set system wallpaper",
"access": "readwrite"
},
"systemXHR": {
"description": "Download wallpapers"
},
"sandboxed-cookies": {
"description": "Sandbox cookies"
},
"serviceworker": {
"description": "Offline usage and notifications"
},
"desktop-notification": {
"description": "Display notifications"
},
"mobiledata": {
"description": "Use mobile data"
},
"wifidata": {
"description": "Use wifi data"
},
"alarms": {
"description": "Automatically set wallpaper"
}
},
"messages": [
{ "serviceworker-notification": "/index.html" },
{ "activity": "/index.html" },
{ "alarm": "/index.html" }
],
"locales": {
"en-US": {
"name": "Bing Wallpaper",
"subtitle": "Beautiful wallpapers daily",
"description": "Beautiful wallpapers from Bing, available daily. Not affiliated with nor endorsed by Microsoft Corporation."
}
},
"default_locale": "en-US",
"orientation": [ "portrait-primary", "landscape-primary" ]
}