Files
gcs-nf/Plugins/MavLinkInspector/mavlinkinspector.json
T

45 lines
1.0 KiB
JSON
Raw Normal View History

{
"$schema": "../schemas/plugin.schema.json",
"name": "mavlink-inspector",
"title": "MAVLink 检查器",
"version": "2.0.0",
"author": "GCS Team",
"description": "MAVLink 协议消息实时检查与调试工具",
"minEngineVersion": "2.0.0",
"library": "builtin",
"entryPoint": "MavLinkInspectorPlugin",
"activationEvents": [
"onToolOpen:mavlink-inspector",
"onMavLinkMessage:*"
],
"contributes": {
"tools": [
{
"id": "mavlink-inspector",
"title": "MAVLink 检查器",
"icon": "icons/inspector.svg",
"position": "tab",
"area": "center",
"priority": 10
}
],
"commands": [
{
"id": "mavlink.clearLog",
"title": "清除日志",
"category": "MAVLink"
},
{
"id": "mavlink.pause",
"title": "暂停/恢复消息流",
"category": "MAVLink"
},
{
"id": "mavlink.filter",
"title": "打开消息过滤器",
"category": "MAVLink"
}
]
}
}