-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
65 lines (65 loc) · 1.3 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
{
"manifest_version": "1",
"type": "WebApp",
"meta": {
"name": "Sample App",
"version": "0.0.1",
"minimum-overwolf-version": "0.120.1.0",
"author": "Overwolf",
"icon": "icon.png",
"icon_gray": "icon_gray.png",
"description": "Game Events Consumer Sample"
},
"permissions": [
"Hotkeys",
"GameInfo",
"GameControl"
],
"data": {
"game_targeting": {
"type": "dedicated",
"game_ids": [
21638
]
},
"hotkeys": {
"sample_app_showhide": {
"title": "Show/Hide In-Game Window",
"action-type": "toggle",
"default": "Ctrl+F"
}
},
"start_window": "chat_wheel",
"windows": {
"chat_wheel": {
"file": "chat_wheel.html",
"transparent": true,
"resizable": false,
"show_in_taskbar": true,
"size": {
"width": 1920,
"height": 1080
},
"min_size": {
"width": 1920,
"height": 1080
},
"max_size": {
"width": 1920,
"height": 1080
}
}
},
"game_events": [21638],
"launch_events": [
{
"event": "GameLaunch",
"event_data": {
"game_ids": [
216381
]
},
"start_minimized": false
}]
}
}