Plugin Configuration

A plugin configuration object is used to create or load a plugin.

It is a JSON object that looks like this:

{ 
  "id": <id>, 
  "type": <type>, 
  "params": { 
    <params> 
  } 
}

Not all three of these fields are required in all contexts:

The following types of plugins are available:

TypeDescriptionDoc
javascriptJavascript plugin loader[doc]
pythonLoad plugins or run scripts written in the Python language[doc]
sharedLibraryPlugin loader for compiled shared libraries[doc]

See also