diff --git a/src/Plugin/CKEditorPlugin/FakeObjects.php b/src/Plugin/CKEditorPlugin/FakeObjects.php
index e405394..744cece 100644
--- a/src/Plugin/CKEditorPlugin/FakeObjects.php
+++ b/src/Plugin/CKEditorPlugin/FakeObjects.php
@@ -3,6 +3,7 @@
 namespace Drupal\fakeobjects\Plugin\CKEditorPlugin;
 
 use Drupal\ckeditor\CKEditorPluginBase;
+use Drupal\ckeditor\CKEditorPluginContextualInterface;
 use Drupal\editor\Entity\Editor;
 
 /**
@@ -13,7 +14,7 @@ use Drupal\editor\Entity\Editor;
  *   label = @Translation("FakeObjects"),
  * )
  */
-class FakeObjects extends CKEditorPluginBase {
+class FakeObjects extends CKEditorPluginBase implements CKEditorPluginContextualInterface {
 
   /**
    * {@inheritdoc}
@@ -36,4 +37,11 @@ class FakeObjects extends CKEditorPluginBase {
     return [];
   }
 
+  /**
+   * {@inheritdoc}
+   */
+  public function isEnabled(Editor $editor) {
+    return TRUE;
+  }
+
 }
