diff --git a/masquerade.module b/masquerade.module
index be5a94b..c677aba 100644
--- a/masquerade.module
+++ b/masquerade.module
@@ -370,6 +370,30 @@ function masquerade_user_logout($account) {
 }
 
 /**
+ * Implements hook_field_extra_fields().
+ */
+function masquerade_field_extra_fields() {
+  $return['user']['user']  = array(
+    'form' => array(
+      'masquerade' => array(
+        'label' => t('Masquerade'),
+        'description' => t('User masquerade settings.'),
+        'weight' => 50,
+      ),
+    ),
+    'display' => array(
+      'masquerade' => array(
+        'label' => t('Masquerade'),
+        'description' => t('Masquerade as user link.'),
+        'weight' => 50,
+      ),
+    ),
+  );
+
+  return $return;
+}
+
+/**
  * Implements hook_user_view().
  */
 function masquerade_user_view($account, $view_mode, $langcode) {
