CKEditor:如何隐藏拼写检查器按钮

CKEditor: How to hide the spell checker button

我一直在无情地删除 buttons/plugins 但我就是找不到如何删除拼写检查器按钮。我已经设法删除了 SCAYT 插件,这样拼写检查器按钮就不再显示了:

CKEDITOR.editorConfig = function( config ) {
    config.resize_enabled = false;
    config.removeButtons = 'Cut,Copy,Paste,PasteText,PasteFromWord,Undo,Redo,Anchor,Underline,Strike,Subscript,Superscript,addFile,Image,Table,Styles,Format,Maximize,HorizontalRule,Unlink,Blockquote,Indent,Outdent,RemoveFormat,Source,Spell';
    config.removePlugins = 'about,specialchar,scayt,spellchecker,elementspath,resize';
};

我也尝试过向 removeButtons 添加各种拼写变体,例如 SpellChecking、SpellCheck、Spelling 等。我需要设置什么?

如果您只想删除按钮,但保留插件,则只需使用:

config.removeButtons = 'Scayt';

至于删除插件,以下配置应该可以完成工作:

config.removePlugins = 'wsc,scayt';