generated from LiteLoaderQQNT/Plugin-Template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest_schema.json
177 lines (177 loc) · 5.08 KB
/
manifest_schema.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "LiteLoaderQQNT Plugin manifest",
"properties": {
"manifest_version": {
"type": "integer",
"enum": [
1,
2,
3,
4
],
"default": 4,
"title": "Manifest 版本",
"description": "当前版本为 4"
},
"type": {
"type": "string",
"enum": [
"extension",
"theme",
"framework"
],
"title": "插件类型"
},
"name": {
"type": "string",
"title": "插件名称"
},
"slug": {
"type": "string",
"title": "插件标识",
"description": "此插件在代码内的唯一标识符"
},
"description": {
"type": "string",
"title": "插件描述"
},
"icon": {
"title": "插件图标",
"description": "请填写插件图标的相对路径或 null",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"thumb": {
"title": "插件小图标",
"description": "请填写插件小图标的相对路径或 null (展示在设置界面边栏)",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"version": {
"type": "string",
"title": "版本号",
"pattern": "^([0-9]+)\\.([0-9]+)\\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\\.[0-9A-Za-z-]+)*))?(?:\\+[0-9A-Za-z-]+)?$"
},
"authors": {
"title": "作者们",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"title": "作者名字",
"type": "string"
},
"link": {
"title": "作者链接",
"type": "string",
"format": "uri"
}
},
"required": [
"name",
"link"
]
}
},
"dependencies": {
"title": "插件依赖",
"description": "填写依赖的 slug",
"type": "array",
"items": {
"type": "string"
}
},
"platform": {
"title": "插件支持的系统平台",
"description": "- Windows: win32 \n- Linux: linux \n- MacOS: darwin",
"type": "array",
"items": {
"type": "string",
"enum": [
"win32",
"linux",
"darwin"
],
"uniqueItems": true
}
},
"injects": {
"title": "要注入的脚本",
"type": "object",
"properties": {
"renderer": {
"title": "渲染进程",
"type": "string"
},
"main": {
"title": "主进程",
"type": "string"
},
"preload": {
"title": "预加载脚本",
"type": "string"
}
}
},
"repository": {
"title": "插件仓库信息",
"type": "object",
"properties": {
"repo": {
"title": "仓库短地址",
"description": "GitHub 仓库地址,格式为 {user}/{repo}",
"type": "string"
},
"branch": {
"title": "分支名称",
"type": "string"
},
"release": {
"type": "object",
"properties": {
"tag": {
"title": "tag 名称",
"description": "不推荐写 latest",
"type": "string"
},
"file": {
"title": "release 内的文件名",
"description": "不填会直接下载 tag 的源码",
"type": "string"
}
},
"required": [
"tag"
]
}
},
"required": [
"repo",
"branch"
]
}
},
"required": [
"manifest_version",
"name",
"slug",
"description",
"version",
"authors",
"platform"
]
}