{
    "name": "custom-context-menu",
    "displayName":"Custom Context Menu",
    "description": "alt+右键自定义右键菜单",
    "version": "0.0.1",
    "publisher": "wangkunpeng@dcloud.io",
    "categories": [
        "Native"
    ],
    "activationEvents": [
        "*"
    ],
    "contributes": {
        "commands": [
            {
                "title":"自定义右键菜单(&D)...",
                "command":"custommenu.openOrCreateMenuJson"
            }
        ],
        "menus": {
            "custom/editor/context": [
                {
                    "id": "custom.menu.editor.provider",
                    "dynamic": true
                },
                {
                    "group": "copy"
                },
                {
                    "command": "custommenu.openOrCreateMenuJson",
                    "group": "copy",
                    "commandArgs":"custom_editor_menu.json",
                    "title": "自定义右键菜单(&D)..."
                }
            ],
            "custom/explorer/context": [
                {
                    "id": "custom.menu.explorer.provider",
                    "dynamic": true
                },
                {
                    "group": "copy"
                },
                {
                    "command": "custommenu.openOrCreateMenuJson",
                    "group": "copy",
                    "commandArgs":"custom_explorer_menu.json",
                    "title": "自定义右键菜单(&D)..."
                }
            ]
        }
    }
}
