This repository has been archived by the owner on Jan 7, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
93 lines (93 loc) · 2.46 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
{
"manifest_version": 1,
"type": "WebApp",
"meta": {
"name": "Game Time Tracker",
"description": "This application enables you to track how much time you spend in your games. Features pretty graphs and tasty stats!",
"version": "1.9.0",
"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",
"Profile",
"Streaming",
"Tray"
],
"data": {
"game_targeting": {
"type": "all"
},
"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
},
"mainWindow": {
"file": "resources/compiled/windows/main-window.html",
"show_in_taskbar": true,
"is_background_page": false,
"block_top_window_navigation": true,
"grab_focus_on_desktop": true,
"desktop_only": true,
"transparent": false,
"native_window": true,
"show_minimize": true,
"show_maximize": false,
"resizable": false,
"keep_window_location": true,
"disable_hardware_acceleration": true,
"disable_auto_dpi_sizing": true,
"min_size": {
"width": 1000,
"height": 775
},
"size": {
"width": 1000,
"height": 775
},
"max_size": {
"width": 1000,
"height": 775
}
}
},
"force_browser": "user",
"launch_events": [
{
"event": "LaunchWithOverwolf",
"tracked": true,
"include_launchers": true
},
{
"event": "AllGamesLaunch",
"tracked": true,
"include_launchers": true
}
],
"game_events": [10902],
"disable_dt": true,
"developer": {
"enable_auto_refresh": true,
"reload_delay": 1000,
"filter": "*.js;*.html;*.css"
},
"extra-objects": {
"game-detector": {
"file": "plugin/GameTimeTracker.GameDetector.dll",
"class": "GameTimeTracker.GameDetector.GameDetectorPlugin"
}
}
}
}