It is customized spell check plugin using API provided at webspellchecker.com

To use this plugin, you shall purchase the license at webspellchecker.com.

How to Use

Loading Plugin File

<link rel="stylesheet" href="URL of webSpellChecker.min.css">
<script src="URL of webSpellChecker.min.js"></script>

UI

You may add the button to toolbar and menu with 'webSpellChecker', the name of the plugin.

Adding to Toolbar

//...
'editor.toolbar': [
	//...,
	'webSpellChecker',
	//...
],
// ...

Adding to Menu

//...
'editor.menu.definition': {
	//...,
	'tools': [
		//...,
		'webSpellChecker',
		//...
	],
	//...
},
//...

API Configuration

You shall set parameters to use API in editor configuration object.

//...
'webSpellChecker.config: {
	'url': 'http://svc.webspellchecker.net/spellcheck31/script/ssrv.fcgi',
	'customid': 'Key you received after purchasing the license',
	'defaultLanguage': 'Target Language'
},
//...