plugin extraplugins example enable javascript ckeditor

javascript - extraplugins - Agrega mĂșltiples plugins extra en una barra de herramientas de ckeditor



ckeditor get (1)

Quiero agregar varios complementos (que he creado) en una barra de herramientas de ckeditor. He escrito abajo el código en config.js

CKEDITOR.editorConfig = function( config ) { config.toolbar_Full = [ [''Styles'', ''Bold'', ''Italic'', ''Underline'', ''SpellChecker'', ''Scayt'', ''-'', ''NumberedList'', ''BulletedList''], [''Link'', ''Unlink''], [''Undo'', ''Redo'', ''-'', ''SelectAll''], ''/'', [''timestamp'', ''-'', ''linkbutton''] ]; config.extraPlugins = ''linkbutton, timestamp''; };

y tengo dos plugins personalizados diferentes. pero no se acepta otro plugin. ¿Cómo agregar otro plugin en una barra de herramientas?