如何删除CKEditor 4中的pickimage按钮

How to remove the pickimage button in CKEditor 4

我可以从工具栏中删除每个按钮,但不能删除这个图像选择器按钮。

我尝试使用 removePlugins: 'pickimage,image' 和 removeButtons: 'Image' 以及我可以删除其他按钮的配置中的更多变化来删除它。

如有任何提示或帮助,我们将不胜感激。

这个按钮:

在 javascript 代码中试试这个。

<script type="text/javascript">
            $(document).ready(function () {
                 CKEDITOR.config.removeButtons = 'Image'; 
            });

  </script>

打开 link 并检查。

enter image description here