Skip to content

Latest commit

 

History

History
24 lines (14 loc) · 537 Bytes

plugin_getting_started.md

File metadata and controls

24 lines (14 loc) · 537 Bytes

Plugin: Getting Started

A plugin allows you to:

  • add a new panel.
  • add one or more top buttons (topBar) or bottom buttons (tool).

You can customize the functions of the panel and buttons.

Quick Start

Two lines to create a vConsole plugin:

var myPlugin = new VConsole.VConsolePlugin('my_plugin', 'My Plugin');
vc.addPlugin(myPlugin);

The above plugin has no function. See Building a Plugin for more details.

Back to Index