-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json5
More file actions
39 lines (39 loc) · 970 Bytes
/
Copy pathplugin.json5
File metadata and controls
39 lines (39 loc) · 970 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
36
37
38
39
{
// 下列属性为插件必需属性,了解更多属性请往前 官方文档-完整配置篇
// https://www.u-tools.cn/docs/developer/information/plugin-json.html
// 插件图标路径
"logo": "logo.png",
// 预加载脚本
"preload": "preload.js",
// 插件入口页面
"main": "index.html",
// 插件ID
"name": "ProxyEnvSync",
// 版本号
"version": "1.0.1",
// 显示名称
"pluginName": "ProxyEnvSync",
// 描述
"description": "Synchronize system proxy settings with environment variables",
// 作者
"author": "ZeonX",
// 主页
"homepage": "https://github.com/ZeonXr",
// 允许后台运行
"allowBackground": true,
// 功能列表
"features": [
{
// 功能代码
"code": "ProxyEnvSync",
// 功能说明
"explain": "Synchronize system proxy settings",
// 触发命令
"cmds": [
"ProxyEnvSync",
"代理同步",
"系统代理"
]
}
]
}