-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
89 lines (89 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
{
"manifest_version":1,
"type":"WebApp",
"meta":{
"name":"InGame Narrator",
"version":"1.0.0",
"minimum-overwolf-version":"0.77.10",
"author":"ganesh varma",
"icon":"assets/IconMouseOver.png",
"icon_gray":"assets/IconMouseNormal.png",
"description":"A simple app that provides a chat window for pubg and narrates the entered text through the specified audio output device"
},
"permissions": [
"Hotkeys",
"Logging",
"Extensions"
],
"data": {
"game_targeting": {
"type": "all"
},
"launch_events": [{
"event": "AllGamesLaunch",
"event_data": {
"game_ids": []
},
"start_minimized": true
}],
"hotkeys": {
"enable_chat_window": {
"title": "Show In-Game Window",
"action-type": "toggle",
"default": "Ctrl+Y"
}
},
"start_window":"ChatWindow",
"windows":{
"ChatWindow":{
"file":"windows/index.html",
"in_game_only": false,
"show_in_taskbar": false,
"resizable": false,
"transparent": true,
"grab_keyboard_focus": true,
"keep_window_location": true,
"disable_blur": true,
"clickthrough": false,
"disable_rightclick": true,
"start_minimized": true,
"mute": false,
"focus_game_takeover": "ReleaseOnHidden",
"focus_game_takeover_release_hotkey": "enable_chat_window",
"size": {
"width": 400,
"height": 130
},
"min_size": {
"width": 400,
"height": 130
}
},
"settings": {
"file":"windows/settings.html",
"show_in_taskbar": true,
"transparent": true,
"resizable": true,
"grab_keyboard_focus": false,
"disable_rightclick": true,
"start_minimized": false,
"clickthrough": false,
"keep_window_location": true,
"size": {
"width":700,
"height":400
},
"min_size": {
"width":400,
"height":400
}
}
},
"extra-objects": {
"overwolf-plugin-tts": {
"file": "OverwolfPluginTTS.dll",
"class": "OverwolfPluginTTS.GenerateSpeech"
}
}
}
}