Enhanced Image

This is an enhanced version of the Image plugin that introduces the image widget. It includes the following features:

  • Integrated image captions.
  • An option to center images.
  • Dynamic "click and drag" resizing of images.

See the Widget Installation guide for help.

Screenshots

image2

310,621 downloads (view stats)

This is an official plugin provided and supported by CKEditor developers.

You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.

Releases

Plugin versions CKEditor versions
4.25 4.24 4.23

Version: 4.24.0-lts

DownloadRelease notes

First major release of CKEditor 4.24.0-lts

Version: 4.23.0-lts

DownloadRelease notes

First major release of CKEditor 4.23.0-lts

Mathematical Formulas

Mathematical plugin that introduces the MathJax widget. You can use it to create or modify equations using TeX.

The following configuration options are available:

Please note that this plugin is not compatible with Internet Explorer 8.

Dependencies: Requires the following plugins to work: Widget, Line Utilities, Dialog, Clipboard.

See the Widget Installation guide for help.

Screenshots

mathjax

107,195 downloads (view stats)

This is an official plugin provided and supported by CKEditor developers.

You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.

Releases

Plugin versions CKEditor versions
4.25 4.24 4.23

Version: 4.24.0-lts

DownloadRelease notes

First major release of CKEditor 4.24.0-lts

Version: 4.23.0-lts

DownloadRelease notes

First major release of CKEditor 4.23.0-lts

Language

This plugin implements the Language toolbar button to support the WCAG 3.1.2 Language of Parts specification.

Languages available in the drop-down list can be set by using the config.language_list configuration option.

Screenshots

language

6,228,103 downloads (view stats)

This is an official plugin provided and supported by CKEditor developers.

You can submit bug reports directly to its GitHub issues tracker and discuss any integration issues on StackOverflow.

Releases

Plugin versions CKEditor versions
4.25 4.24 4.23

Version: 4.24.0-lts

DownloadRelease notes

First major release of CKEditor 4.24.0-lts

Version: 4.23.0-lts

DownloadRelease notes

First major release of CKEditor 4.23.0-lts

Toolbar switch on Maximize

This plugin allows you to change the themed ui editor instance toolbar when switching between maximized mode and normal.

Requires:

  • Maximize plugin. But not the button that goes with it. All toolbars used in the ckeditor instance have to use the 'Toolbarswitch' button instead.
  • A custom config to define the small and big toolbars.
  • function CKeditor_OnComplete(ckEditorInstance){ ... your own custom code or leave empty... } This was added to the plugin for those that wrap the ckeditor in other java script to shield the rest of their code from ckeditor version particularities.
  • Turn off advanced content filtering with: "config.allowedContent = true;" otherwise content will be filtered away when switching from a big to a small toolbar.

  • jQuery

Example replace:

CKEDITOR.replace('sometextcomponentname', {
    customConfig: '/...custom_ckeditor_config.js',
    toolbar: 'yoursmalltoolbarname',
    smallToolbar: 'yoursmalltoolbarname',
    maximizedToolbar: 'yourbigtoolbarname'
});

In case you want to use the same config everywhere and do

CKEDITOR.replace('sometextcomponentname');

everywhere instead. Simply add the following to the "config.js":

config.toolbar_minToolbar = [...]; // Custom minimized toolbar config
config.toolbar_maxToolbar = [...]; // Custom maximized toolbar config
config.toolbar = 'minToolbar';
config.smallToolbar = 'minToolbar';
config.maximizedToolbar = 'maxToolbar';
config.allowedContent = true;

 

toolbarswitch

40,553 downloads (view stats)

Releases

Plugin versions CKEditor versions
4.25 4.24 4.23

Version: 4.3.2

DownloadRelease notes

Typo fix in javascript: https://github.com/paulveldema/ckeditor-plugins/issues/4

Include CSS & JS

Editing pages is much easier when you see them exactly as they are published: in the same fonts, same sizes and colors as your main theme. This is the essence of WYSIWYG-editors after all. The Include CSS & JS plugin frees you from using the preview function every minute by simply attaching CSS & JS to the inner CKEditor's area.
 
If you use Bootstrap or Foundation framework you can painlessly configure which components of Bootstrap/Foundation you want to apply. Moreover, the plugin supports downloading both from the official CDN and your local installations of the framework.
 
So, you can adapt the inner area of the WYSIWYG-editor to the form of your website.

Screenshots

GoogleMAP

This is newer version.

Now you can show 2 (or just one ) markers in one Map picture with different colors.

No philosophy, simple enter Latitude and longitude value, choose marker color and that is all.

Tested in latest Opera, Chrome and Firefox..

Here we use STATIC google map method, and as result you will got

static google map picture with marker on center of the picture.

After 5200 downloads for free this version is commercial.

Screenshots

Releases

Plugin versions CKEditor versions
4.25 4.24 4.23

Version: 4.2

DownloadRelease notes

This is same version as is 1.2.

we was just confirmed compatibility and with latest 4.3 version of CKEditor

chears :)

Youtube Plugin

This plugin allows inserting Youtube videos using embed code or just the video URL.

Installation

Follow these steps:

  1. Extract the downloaded file into the CKEditor’s plugins folder.
  2. Enable the plugin by changing or adding the extraPlugins line in your configuration (config.js):
config.extraPlugins = 'youtube';
Configuration

You can also change the default plugin options on config.js:

Video width:

config.youtube_width = '640';


Video height:

config.youtube_height = '480';


Make responsive (ignore width and height, fit to width):

config.youtube_responsive = true;


Show related videos:

config.youtube_related = true;


Use old embed code:

config.youtube_older = false;


Enable privacy-enhanced mode:

config.youtube_privacy = false;


Start video automatically:

config.youtube_autoplay = false;


Show player controls:

config.youtube_controls = true;


Disable the change of settings. The elements on the list will be disabled (but still visible). See the available element list below.

config.youtube_disabled_fields = ['txtEmbed', 'chkAutoplay'];

List of UI elements:

  • txtEmbed
  • txtUrl
  • txtWidth
  • txtHeight
  • chkResponsive
  • chkNoEmbed
  • chkRelated
  • chkOlderCode
  • chkPrivacy
  • chkAutoplay
  • txtStartAt
  • chkControls

Screenshots

youtube

343,062 downloads (view stats)

Releases

Plugin versions CKEditor versions
4.25 4.24 4.23

Version: 2.1.18

DownloadRelease notes

  • Fix width and height validation
  • Fix `disabled is undefined` in `handleLinkChange`
  • lang / it: add missing `txtNoEmbed` key
  • Add workflow to publish a release on NPM and on Github Release

I would like to thank MRoci to all the fixes on this release. Thank you so much!

Text Transform

A very simple plugin which provides transforming selected text to new cases. You can transform selected text to uppercase, lowercase or simply capitalize it.

Available Transform Cases

  • Transform Text to Uppercase: Convert letters to uppercase
  • Transform Text to Lowercase: Convert letters to lowercase
  • Transform Capitalize: Capitalize each word of selected text
  • Transform Switcher: Loop through all cases

 

Internationalization

Currently plugin supports 2 languages.

  • en
  • tr

Translations are welcomed.

Usage

  1. Download source files and place them on to be created "texttransform" folder under the CKeditor's plugin base. 2. Define plugin in CKEDITOR config object.
            CKEDITOR.config.extraPlugins = 'texttransform';
    
  2. Add transform buttons to your editor toolbar.
            CKEDITOR.config.toolbar = [
                { name: 'texttransform', items: [ 'TransformTextToUppercase', 'TransformTextToLowercase', 'TransformTextCapitalize', 'TransformTextSwitcher' ] }
            ];
    
  3. Set your CKEDITOR language if you did not set it yet.
            CKEDITOR.config.language = 'en';
    

Demo

View the live demo on jsFiddle.

Screenshots

texttransform

72,565 downloads (view stats)

Releases

Plugin versions CKEditor versions
4.25 4.24 4.23

Version: 1.1

DownloadRelease notes

* Merge pull request #3 from ppKrauss/patch-1 (fix for v1.0 destroy formated text bug)

* Fixed Turkish locale transformation problem

Google Maps

Need a map? Google Maps will help you inserting and editing a Google map into your website.

The location of your office, travel itinerary or some mark on the map are now available in one click.
With simple tools you can customize the map as you wish.

Features:

  • edit any of the maps you have inserted before
  • configure the view size, and zoom of the map
  • configure Google Map type (Roadmap / Satellite / Hybrid / Relief)
  • semantic search for objects by addresses, names, etc.
  • support for map layers
  • overlay of points, routes, areas onto the map.

Screenshots

Translater

Translater - plugin for translate fragment text of one language into two

CKEditor plugin for quick translation of text, using the specialized services. If you use the service Yandex Translate API that translations are provided by a browser directly referring to the server Yandex. If you have purchased the full version of the plugin, you will be given another 2 service. Google Translate API and Bing Translate API, but for this web server must support the php.

30+ languages are supported.

Screenshots

Releases

Plugin versions CKEditor versions
4.25 4.24 4.23

Version: 1.0.4

DownloadRelease notes

Fixed a problem with Firefox

Twitter Facebook Facebook Instagram Medium Linkedin GitHub Arrow down Phone Menu Close icon Check