Chess
Inserts a Chess Board object into the document editor. The object makes it possible to edit and save the chess position in the FEN format.
Plugin type: visual, OLE object, non-system.
Supported editors: documents, spreadsheets, presentations.
Download this plugin from GitHub and install it following the
desktop, on-premises,
or cloud installation instructions.
- Open the Plugins tab and press Chess.
- A chessboard window will appear on the screen and you can play chess.
- To interrupt the game, press the Ok button. The game preview in form of an image will appear in your document with all the changes saved. Click it to continue the game.
Repository on GitHub: https://github.com/ONLYOFFICE/sdkjs-plugins/tree/master/chess.
- config.json, index.html, and chess.js
- Icons
- index_about.html for the plugin About window
{
"name" : "chess(fen)",
"guid" : "asc.{FFE1F462-1EA2-4391-990D-4CC84940B754}",
"variations" : [
{
"description" : "chess",
"url" : "index.html",
"icons" : ["resources/icon.png", "resources/icon@2x.png"],
"isViewer" : true,
"EditorsSupport" : ["word", "cell", "slide"],
"isVisual" : true,
"isModal" : true,
"isInsideMode" : false,
"initDataType" : "ole",
"initData" : "",
"isUpdateOleOnResize" : true,
"buttons" : [ { "text": "Ok", "primary": true },
{ "text": "Cancel", "primary": false } ]
},
{
"description" : "About",
"url" : "index_about.html",
"icons" : ["resources/icon.png", "resources/icon@2x.png"],
"isViewer" : true,
"EditorsSupport" : ["word", "cell", "slide"],
"isVisual" : true,
"isModal" : true,
"isInsideMode" : false,
"initDataType" : "none",
"initData" : "",
"buttons" : [ { "text": "Ok", "primary": true } ],
"size" : [392, 147]
}
]
}
If you want to request a feature or report a bug regarding this plugin, use the issues section on GitHub.