-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmod.json
157 lines (157 loc) · 3.91 KB
/
mod.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"geode": "4.2.0",
"version": "v0.7.1",
"id": "smjs.gdintercept",
"name": "GDIntercept",
"developers": [
"SMJS",
"RobTop"
],
"description": "A tool to intercept and modify GD requests.",
"links": {
"community": "https://discord.gg/VqFpjF5mJe",
"source": "https://github.com/SMJSGaming/GDIntercept"
},
"issues": {
"info": "Inform issues through the repository issues page.",
"url": "https://github.com/SMJSGaming/GDIntercept/issues"
},
"tags": [
"online",
"interface",
"utility",
"content",
"cheat",
"developer"
],
"gd": {
"win": "2.2074",
"mac": "2.2074",
"android": "2.2074"
},
"dependencies": {
"geode.custom-keybinds": {
"version": "1.10.2",
"importance": "required",
"platforms": [
"win",
"android64"
]
}
},
"resources": {
"fonts": {
"consola": {
"path": "resources/consola.ttf",
"size": 56
}
},
"spritesheets": {
"badges": [
"resources/badges/*.png"
],
"actions": [
"resources/actions/*.png"
]
},
"sprites": [
"resources/*.png"
],
"files": [
"resources/themes/*.json",
"resources/suffixes.json"
]
},
"settings": {
"code-settings": {
"type": "title",
"name": "Code Settings",
"description": "Settings related to the user interface."
},
"theme": {
"name": "Theme",
"description": "The theme of the code block.",
"type": "custom:dynamic-enum",
"default": "Dark",
"save-value": "themes"
},
"snapping-aggression": {
"name": "Snapping Aggression",
"description": "The amount of update cycles between each scroll axis lock in the code block.",
"type": "int",
"default": 10,
"min": 1,
"max": 100
},
"censor-data": {
"name": "Censor Sensitive Data",
"description": "Censors all known sensitive keys in GD and some common sensitive keys.",
"type": "bool",
"default": true
},
"raw-data": {
"name": "Raw Data",
"description": "Displays data in its raw state without any manipulation of the text besides capping the amount of rendered characters.",
"type": "bool",
"default": false
},
"minimize-side-menu": {
"name": "Minimize Side Menu",
"description": "Minimizes the side menu to only show icons.",
"type": "bool",
"default": true
},
"list-settings": {
"type": "title",
"name": "List Settings",
"description": "Settings related to the request list."
},
"filter": {
"name": "Filter",
"description": "Filters out requests from specific sources.",
"type": "string",
"default": "None",
"one-of": [
"None",
"Geometry Dash Server",
"Geometry Dash CDN",
"RobtopGames Server",
"Newgrounds CDN",
"Geode Server",
"Localhost",
"Unknown Origin"
]
},
"hide-badges": {
"name": "Hide Badges",
"description": "Hides the badge icons in the request list.",
"type": "bool",
"default": false
},
"proxy-settings": {
"type": "title",
"name": "Proxy Settings",
"description": "Settings related to the proxy server."
},
"confirm-pause-between-plays": {
"name": "Confirm Pause Between Plays",
"description": "If this is enabled, GDI will remember the pause option between session.",
"type": "bool",
"default": false
},
"cache-limit": {
"name": "Cache Limit",
"description": "The amount of requests to cache before removing the oldest one.",
"type": "int",
"default": 25,
"min": 1,
"max": 1000
},
"log-requests": {
"name": "Log Requests",
"description": "Logs all requests made in the current session to the Geode console.",
"type": "bool",
"default": false
}
}
}