This repository has been archived by the owner on Mar 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
we-config.json
90 lines (90 loc) · 2.79 KB
/
we-config.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
{
/*初始化*/
"initialize": {
/*宽度*/
"width": 1300,
/*高度*/
"height": 900,
/*是否全屏*/
"fullscreen": false,
/*启动时是否隐藏主界面*/
"hide": false,
"tabs": {
/*初始化加载的选项卡*/
"loads": [
"FileManager",
"JsonParser",
"RandomGenerator",
"ClipboardHistory",
"QrCodeGenerator",
"CharsetConverter",
"NetworkTool",
"NaryConverter"
],
/*支持初始化加载的选项卡,注意:这里只是展示,此配置修改是无效的*/
"supports": [
"FileManager",
"JsonParser",
"RandomGenerator",
"ClipboardHistory",
"QrCodeGenerator",
"CharsetConverter",
"NetworkTool",
"NaryConverter"
]
}
},
/*快速启动菜单*/
"quickStarts": [
{
/*菜单别名是必须的,location与subStarts属性二选一*/
"alias": "配置文件",
/*启动的文件路径,支持相对路径和绝对路径*/
"location": "./we-config.json",
/*subStarts里面又是多个quickStarts,可循环的*/
"subStarts": []
}
],
/*插件的绝对路径*/
"pluginPaths": [],
/*禁用的插件*/
"pluginDisables": [
{
"author": "ease",
"name": "sample",
"version": "1.0.0"
}
],
/*文件过滤,过滤掉不匹配的文件*/
"fileFilter": "^[^.].*$",
/*记录的剪贴板历史长度*/
"clipboardSize": 20,
/*文本框是否自动换行*/
"autoWrap": true,
/*文件选择框初始化的文件夹*/
"fileChooserInitDir": "",
/*日志压缩的长度*/
"logCompressLen": 64,
/*自定义重启的脚本路径*/
"restartBatch": "",
/*windows虚拟桌面触发角:LEFT_TOP, LEFT_BOTTOM, RIGHT_TOP, RIGHT_BOTTOM*/
"winVirtualDesktopHotCorner": "RIGHT_TOP",
/*是否关闭鼠标键盘监听器*/
"disableKeyboardMouseListener": true,
/*是否关闭暗黑模式*/
"disableDarkMode": false,
/*自动移除未加载的插件*/
"autoRemoveUnloadedPlugin": true,
/*数据库连接配置*/
"dbConnections": [],
/*网页工具*/
"webTools": {
"历史朝代表": "https://tool.lu/dynasty"
},
/*代理*/
"proxy": "127.0.0.1:6789",
/*HTTP文件浏览服务接口,包括接口名及本地文件绝对路径*/
"httpFiles": ["get/file/* C:\\"],
/*上传文件保存路径,为空不允许上传文件,支持相对路径*/
"fileUploadDir": "upload"
}