-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (48 loc) · 1.35 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
{
"manifest_version": 2,
"name": "__MSG_app_name__",
"short_name": "__MSG_app_short_name__",
"description": "__MSG_app_description__",
"version": "2.1.0",
"minimum_chrome_version": "38",
"default_locale": "en",
"icons": {
"16": "assets/appicon_16.png",
"19": "assets/appicon_19.png",
"38": "assets/appicon_38.png",
"48": "assets/appicon_48.png",
"96": "assets/appicon_96.png",
"128": "assets/appicon_128.png",
"192": "assets/appicon_192.png",
"256": "assets/appicon_256.png",
"512": "assets/appicon_512.png"
},
"author": "Philipp Bauer",
"permissions": [
"wallpaper",
"alarms",
"notifications",
"clipboardWrite",
"storage",
{
"fileSystem": ["retainEntries", "directory"]
},
"https://shufflepaper.web.app/"
],
"app": {
"background": {
"scripts": [
"js/Constants.js",
"js/Helper.js",
"js/AssetManager.js",
"js/NotificationManager.js",
"js/WindowManager.js",
"js/FilesystemManager.js",
"js/SharedPreferences.js",
"js/WallpaperManager.js",
"js/BackgroundService.js"
]
}
},
"offline_enabled": true
}