Unofficial Antidote plugin for ONLYOFFICE. Powered by @druide-informatique/antidote-api-js.
This plugin is developped with OnlyOffice 9.3.1.8 and Antidote 12. Since the WebSocket API was introduced only from Antidote 12, so prior versions of Antidote are not expected to work with this plugin.
You can go to the release page to download the latest version of the plugin. The filename is ended with .plugin.
Please manually install this plugin to OnlyOffice.
Clone the repository
git clone https://github.com/onlyoffice/onlyoffice-textcure.git
Install dependencies
npm install
Build the plugin
npm run build:plugin
After that, you should be able to see that a *.plugin file is created at the root directory.
Note: The plugin has only be tested with Desktop version of ONLYOFFICE.
If you are interested in fixing bugs or adding new features, you are free to fork the repository.
The whole project is writen in Typescript and built using Vite. The Javascript code is minified in the plugin. For debugging, you may want to modify vite.config.ts to avoid minification:
export default defineConfig({
build: {
minify: false,
}
});