UNPKG

500 BMarkdownView Raw
1Plugin: Getting Started
2==============================
3
4A plugin allows you to:
5
6- add a new tab
7- add one or more tool button(s)
8
9You can customize the functions of the tab and buttons.
10
11
12## Quick Start
13
14Two lines to create a vConsole plugin:
15
16```javascript
17var myPlugin = new VConsole.VConsolePlugin('my_plugin', 'My Plugin');
18vc.addPlugin(myPlugin);
19```
20
21The above plugin has no function. See [Building a Plugin](./plugin_building_a_plugin.md) for more details.
22
23
24[Back to Index](./a_doc_index.md)
\No newline at end of file