Clippy

Description

Adds a clippy assistant to the document editor.

Plugin type: visual, non-system.

Supported editors: documents, spreadsheets, presentations.

Clippy
Installation

Download this plugin from GitHub and install it following the desktop, on-premises, or cloud installation instructions.

Usage
  1. Find the plugin in the Plugins tab.
  2. Select any assistant from the drop down list.
  3. Click the assistant to start a random animation.
Plugin structure

Repository on GitHub: https://github.com/ONLYOFFICE/sdkjs-plugins/tree/master/clippy.

  1. config.json, index.html, and code.js
  2. Icons
  3. index_about.html for the plugin About window
  4. Third-party services:
    • jQuery - a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. License: MIT License.
    • clippy.js is a full Javascript implementation of Microsoft Agent (AKA Clippy and friends), ready to be embedded in any website. License: MIT License.
Config
{
    "name"       : "Clippy",
    "guid"       : "asc.{5C521CB8-FD20-4CA3-83D7-1EEB8F4DC759}",

    "variations": [
        {
            "description": "Clippy",
            "url": "index.html",

            "icons": [ "resources/img/icon.png", "resources/img/icon@2x.png"],
            "isViewer": true,
            "EditorsSupport": [ "word", "slide", "cell" ],

            "isVisual": true,
            "isModal": false,
            "isInsideMode": true,

            "initDataType": "none",
            "initData": "",

            "buttons": []
        },
        {
            "description": "About",
            "url": "index_about.html",

            "icons": [ "resources/img/icon.png", "resources/img/icon@2x.png"],
            "isViewer": false,
            "EditorsSupport": [ "word", "slide", "cell" ],

            "isVisual": true,
            "isModal": true,
            "isInsideMode": false,

            "initDataType": "none",
            "initData": "",

            "buttons": [
                {
                    "text": "Ok",
                    "primary": true
                }
            ],

            "size": [ 400, 50 ]
        }
    ]
}
Methods and events
Support

If you want to request a feature or report a bug regarding this plugin, use the issues section on GitHub.