-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
128 lines (128 loc) · 3.61 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"manifest_version": 1,
"type": "WebApp",
"meta": {
"name": "Destiny 2 - Goal tracker",
"description": "Allows you to always see your tracked goals and their progress (slightly delay in increments, as we don't want to spam the API)",
"version": "1.8.4",
"author": "NoLifeKing85",
"minimum-overwolf-version": "0.170.0",
"icon": "resources/images/logo.png",
"icon_gray": "resources/images/logo_bw.png",
"window_icon": "resources/images/logo.png",
"splash_image": "resources/images/splash.png",
"launcher_icon": "resources/images/gtt-logo.ico"
},
"permissions": ["GameInfo", "Extensions", "FileSystem", "Hotkeys", "Web", "Streaming"],
"data": {
"game_targeting": {
"type": "dedicated",
"game_ids": [21812]
},
"externally_connectable": {
"matches": ["https://www.bungie.net", "https://o2g.itssimple.se"]
},
"protocol_override_domains": { "googlesyndication": "http" },
"start_window": "background",
"windows": {
"background": {
"file": "resources/compiled/windows/background-window.html",
"show_in_taskbar": false,
"is_background_page": true,
"background_optimization": false,
"block_top_window_navigation": true
},
"loadingWindow": {
"file": "resources/compiled/windows/loading-window.html",
"show_in_taskbar": true,
"is_background_page": false,
"desktop_only": false,
"transparent": true,
"resizable": false,
"disable_auto_dpi_sizing": true,
"min_size": {
"width": 450,
"height": 400
},
"size": {
"width": 450,
"height": 400
},
"max_size": {
"width": 450,
"height": 400
}
},
"overlayWindow": {
"file": "resources/compiled/windows/overlay-window.html",
"show_in_taskbar": true,
"transparent": true,
"resizable": false,
"clickthrough": false,
"in_game_only": false,
"is_background_page": false,
"background_optimization": false,
"restrict_to_game_bounds": false,
"disable_auto_dpi_sizing": true
},
"mainWindow": {
"file": "resources/compiled/windows/main-window.html",
"show_in_taskbar": true,
"is_background_page": false,
"block_top_window_navigation": true,
"desktop_only": false,
"transparent": true,
"resizable": false,
"keep_window_location": true,
"disable_auto_dpi_sizing": true,
"min_size": {
"width": 1366,
"height": 750
},
"size": {
"width": 1366,
"height": 750
},
"max_size": {
"width": 1366,
"height": 750
}
}
},
"force_browser": "user",
"launch_events": [
{
"event": "GameLaunch",
"event_data": {
"game_ids": [21812]
},
"tracked": true,
"include_launchers": false
}
],
"game_events": [21812],
"disable_dt": false,
"developer": {
"enable_auto_refresh": true,
"reload_delay": 1000,
"filter": "*.js;*.html;*.css"
},
"url_protocol": {
"scheme": "d2overlay"
},
"extra-objects": {
"destiny2ApiClient": {
"file": "plugin/Destiny2.GoalTracker.Client.dll",
"class": "Destiny2.GoalTracker.Client.ApiClient"
}
},
"hotkeys": {
"toggle_Destiny2_Overlay": {
"title": "Toggle Destiny 2 Overlay",
"action-type": "custom",
"default": "Shift+F10",
"passthrough": true
}
}
}
}