diff --git a/README.txt b/README.txt
index cee0629..22be801 100644
--- a/README.txt
+++ b/README.txt
@@ -22,6 +22,9 @@ processed after that filter.
 To enable WYSIWYG support, go to the WYSIWYG settings for each input format and
 enable the Video Filter button.
 
+To enable ckeditor (standalone) support, please see plugin instructions in:
+./editors/ckeditor/README.txt
+
 ========= Usage =========
 
 Single video: [video:url]
diff --git a/editors/ckeditor/README.txt b/editors/ckeditor/README.txt
index 6f21e91..9e372b0 100644
--- a/editors/ckeditor/README.txt
+++ b/editors/ckeditor/README.txt
@@ -7,29 +7,22 @@ Installation:
 
 Do the following steps to add video_filter button to the CKEditor toolbar:
 
-   1. Open ckeditor.config.js (in the ckeditor module root)
-
-   2. Scroll down to the end of the file, right before "};" insert:
-
-      // Video_filter plugin.
-      config.extraPlugins += (config.extraPlugins ? ',video_filter' : 'video_filter' );
-      CKEDITOR.plugins.addExternal('video_filter', Drupal.settings.basePath + Drupal.settings.video_filter.modulepath + '/editors/ckeditor/');
-
-   3. Add button to the toolbar.
-
-      3.1 Go to Configuration -> CKEditor (admin/config/content/ckeditor)
-          Click "Edit" on the profile you what to use with Linkit.
-
-      3.2 Expand "Editor appearance" and go to "Toolbar".
-
-          The button name is: video_filter
-          For example if you have a toolbar with an array of buttons defined as
-          follows:
-
-          ['Bold','Italic']
-
-          simply add the button somewhere in the array:
-
-          ['Bold','Italic','video_filter']
-
-          (remember the single quotes).
+  1. Copy the files located in video_filter/editors/ckeditor to a new directory in
+     the ckeditor's plugin path: ckeditor/plugins/video_filter, so that the plugin.js
+     file is located at: ckeditor/plugins/video_filter/plugin.js
+  
+  2. Open ckeditor.config.js (in the ckeditor module root)
+  
+  3. Add the button 'video_filter' to one, or all the sample toolbar array definitions.
+      
+      For example, find "Drupal.settings.cke_toolbar_DrupalFull" and simply modify
+      the array:
+      
+      ['Image','Flash','Table',....etc
+      
+      and insert 'video_filter'
+      
+      ['Image','video_filter','Flash','Table',....etc
+      
+  4. In your ckeditor profile, enable the video_filter plugin and drag the new video_filter
+     button from the "All Buttons" toolbar to the "Used Buttons" toolbar.
\ No newline at end of file
