Getting Started

To activate a plugin, use the portal.plugins.on() method, and pass in the ID of the plugin as an argument. For example, to activate the "toggle password visibility" plugin:
portal.plugins.on('togglePassword');
To deactivate a plugin, pass the plugin ID into the portal.plugins.off() method:
portal.plugins.off('togglePassword');
To get a list of all available plugins, use the portal.plugins.get() method:
var plugins = portal.plugins.get();