-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathplugin.json5
More file actions
35 lines (35 loc) · 858 Bytes
/
plugin.json5
File metadata and controls
35 lines (35 loc) · 858 Bytes
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
{
// 下列属性为插件必需属性,了解更多属性请往前 官方文档-完整配置篇
// https://www.u.tools/docs/developer/config.html
// 插件图标路径
logo: "logo.png",
// 预加载脚本
preload: "preload.js",
// 插件入口页面
main: "index.html",
// 插件ID
name: "your plugin ID",
// 版本号
version: "1.0.0",
// 显示名称
pluginName: "template",
// 描述
description: "plugin template",
// 作者
author: "QC2168",
// 主页
homepage: "https://github.com/QC2168",
// 功能列表
features: [
{
// 功能代码
code: "template",
// 功能说明
explain: "插件模板主界面",
// 触发命令
cmds: [
"template"
]
}
]
}