Waste of time

HTML

<script src="//cdn.ckeditor.com/4.4.3/standard/ckeditor.js"></script>
<textarea name="editor1" id="editor1" rows="10" cols="80">
    This is my textarea to be replaced with CKEditor.
</textarea>

JavaScript

CKEDITOR.on('dialogDefinition', function(ev) {
    var dialog = ev.data;
    
    if (dialog.name === 'link') {
        var infoTab = dialog.definition.getContents('info');
        infoTab.remove('linkType');
        infoTab.remove('protocol');
        infoTab.remove('browse');
    }
});

//Solution remove the "clever" plugin once and for all,
//then build one that actually works.
//It is easily done by following this tutorial
//http://docs.ckeditor.com/#!/guide/plugin_sdk_sample_1
CKEDITOR.replace('editor1', {
    //removePlugins: 'link'
});