简体   繁体   中英

Where to see full list of CKEditor plugins in CDN?

I include CKEditor source code into my app from CDN (see CKEditor CDN docs )

<script src="//cdn.ckeditor.com/4.13.0/standard-all/ckeditor.js"></script>

I want to add some external plugins

CKEDITOR.editorConfig = function (config) {
  config.extraPlugins = 'divarea,confighelper';
}

CKEditor also loads divarea plugin from CDN . But confighelper plugin seems to be missing in CDN and CKEditor complains with:

Uncaught Error: [CKEDITOR.resourceManager.load] Resource name "confighelper" was not found at "http://cdn.ckeditor.com/4.13.0/standard-all/plugins/confighelper/plugin.js?t=42..."

so I need to download and unpack its source to my app from CKEditor plugins page . It would be cool to see what plugins are available in CDN. I tried to see CDN's plugins directory but the resource responds with Forbidden

How to see full list of CKEditor plugins available in CDN?

CKEditor presets

The following table illustrates plugins provided by CKEditor distributions, available in CKEditor CDN and the ​CKEditor releases repository.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM