这是我的 plugin.json 文件
{
    "logo": "logo.png",
    "preload": "preload.js",
    "features": [
        {
            "code": "command_1",
            "explain": "业务1",
            "cmds": [
                {
                    "type": "regex",
                    "label": "业务1",
                    "match": "一串正则",
                    "minLength": 17
                }
            ]
        },
        {
            "code": "command_2",
            "explain": "业务2",
            "cmds": [
                {
                    "type": "regex",
                    "label": "业务2",
                    "match": "一串正则",
                    "minLength": 6
                }
            ]
        }
    ]
}