I'm new to CKEditor and relatively new to JavaScript.
I'd like to make a script/Userscript to force some sites that already use CKEditor to use the latest version of ckeditors.js to be able to use the new features.
A good example is http://www.pageorama.com which use the old 3.6.2 version.
You can see the version easily with alert(CKEDITOR.version);
I already know how to destroy CKEditor instance with CKEDITOR.instances.editor.destroy()
and add things to the toolbar.
My main problem now is to have the latest CKEditor version to be used when I reload it with CKEDITOR.replace(editor);
, This was I will be able to config it with the latest feature on site that use CKEditor.
How I can do that ?