-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
83 lines (83 loc) · 2.29 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
{
"manifest_version": 1,
"type": "WebApp",
"meta": {
"name": "Sample App",
"author": "Overwolf",
"version": "1.0.1",
"minimum-overwolf-version": "0.120.0",
"description": "TFT Scout",
"dock_button_title": "TFT Scout",
"icon": "dist/icons/iconMouseOver.png",
"icon_gray": "dist/icons/iconMouseNormal.png",
"launcher_icon": "dist/icons/icon.ico",
"window_icon": "dist/icons/windowIcon.png"
},
"permissions": [
"GameInfo"
],
"data": {
"start_window": "overlay",
"windows": {
"overlay": {
"file": "./dist/overlay.html",
"in_game_only": true,
"focus_game_takeover": "ReleaseOnHidden",
"focus_game_takeover_release_hotkey": "showhide",
"resizable": false,
"transparent": true,
"max_size": {
"width": 350,
"height": 170
},
"min_size": {
"width": 350,
"height": 170
},
"keep_window_location": false
},
"background": {
"file": "./dist/background.html",
"is_background_page": true
}
},
"game_targeting": {
"type": "dedicated",
"game_ids": [
5426,
10902
]
},
"game_events": [
5426,
10902
],
"launch_events": [
{
"event": "GameLaunch",
"event_data": {
"game_ids": [
5426
]
},
"start_minimized": false
}
],
"protocol_override_domains": {
"googlesyndication": "http"
},
"externally_connectable": {
"matches": [
"http://*.overwolf.com",
"https://*.overwolf.com",
"https://overwolf.github.io"
]
},
"force_browser": "user",
"developer": {
"enable_auto_refresh": true,
"reload_delay": 1000,
"filter": "*.*"
}
}
}