-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathmanifest.json
91 lines (91 loc) · 1.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "Kiosk",
"description": "Launch any URL as a full-screen kiosk.",
"manifest_version": 2,
"version": "9.3.0",
"version_name": "kiosk-9.3.0",
"author": {
"name": "The Cook Company",
"email": "[email protected]"
},
"kiosk_enabled": true,
"kiosk": {
"required_platform_version": "10718.71.2"
},
"offline_enabled": true,
"icons": {
"16": "img/icon_16.png",
"128": "img/icon_128.png"
},
"app": {
"background": {
"scripts": ["node_modules/async/dist/async.js", "js/lodash.min.js", "js/wsc-chrome.js", "js/main.js"],
"persistent": false
}
},
"sockets":{
"tcpServer": {
"listen": "*"
}
},
"permissions": [
"<all_urls>",
"system.display",
"system.network",
"power",
"webview",
"alwaysOnTopWindows",
"storage",
"app.window.fullscreen",
"app.window.fullscreen.overrideEsc",
"gcm",
"enterprise.deviceAttributes",
{"fileSystem": ["write", "directory","retainEntries"]}
],
"optional_permissions": [ "audioCapture", "videoCapture" ],
"storage": {
"managed_schema": "schema.json"
},
"commands": {
"openAdmin": {
"suggested_key": {
"default": "Ctrl+A",
"mac": "MacCtrl+A"
},
"description": "Open the setup page"
},
"print": {
"suggested_key": {
"default": "Ctrl+P",
"mac": "MacCtrl+P"
},
"description": "Print the current page"
},
"refresh": {
"suggested_key": {
"default": "Ctrl+R",
"mac": "MacCtrl+R"
},
"description": "Refresh the current page"
}
},
"build": {
"nwVersion": "0.35.4",
"ffmpegIntegration": true,
"output": "../",
"outputPattern": "${PLATFORM}-${ARCH}",
"packed": true,
"targets": [
"nsis"
],
"mac": {
"icon": "./img/icon.icns"
},
"win": {
"icon": "./img/icon.ico"
},
"window": {
"icon": "./img/icon_128.png"
}
}
}