Skip to content
This repository has been archived by the owner on Apr 2, 2023. It is now read-only.

Plugins

Rainer Simon edited this page Jun 25, 2013 · 15 revisions

Plugins

Annotorious provides a simple plugin mechanism for extensions. You can add a plugin to Annotorious using the JavaScript syntax below. The opt_config_options parameter is an optional object literal providing configuration options for the plugin.

anno.addPlugin('myPlugin', opt_config_options);

Please note that at the moment, plugins are only supported in the standalone version of Annotorious, not in the OKFN Annotator version!

Available Plugins

  • Parse Plugin. A cloud storage plugin to store annotations on the [Parse.com platform] (http://parse.com) hosting service. Kindly contributed by @dommmel, and available here.

  • ElasticSearch Plugin. The ElasticSearch Plugin can be used to persist annotations in a vanilla ElasticSearch installation. It is currently in an alpha state and available here.

Creating Your Own Plugins

Information on how to write your own Annotorious Plugins is available here.