Definition of extension

    Type: {string} Required

    The name of the extension, this name needs to correspond to the extension folder one-to-one.

    version

    Type {string} Required

    The version number of the extension is used to submit the version verification of the extension, as well as some upgrades of the extension itself, and the data migration is used as the basis for comparison.

    Describes the version of the editor that the extension supports using, conforming to the .

    author

    Type {string} Optional

    The name of the extension author will be displayed in the Extension Manager.

    Type {string} Optional

    main

    Type {string} Optional

    The relative path of a js file defines the function entry file. When the extension starts, the JavaScript file pointed to by the main field will be executed, and the corresponding method will be triggered or executed according to the process.

    Type {[name: string]: PanelInfo} Optional

    Panel information defined in the extension. Use to open the defined panel. For more information, please refer to the Panel documentation.

    contributions

    Extend existing functions, and customize some other function modules that are open to the outside world. For more information, please refer to the Contributions documentation.