Options
All
  • Public
  • Public/Protected
  • All
Menu

joplin.plugins

This class provides access to plugin-related features.

Index

Methods

Methods

register

  • register(script: Script): Promise<void>
  • Registers a new plugin. This is the entry point when creating a plugin. You should pass a simple object with an onStart method to it. That onStart method will be executed as soon as the plugin is loaded.

    joplin.plugins.register({
        onStart: async function() {
            // Run your plugin code here
        }
    });

    Parameters