diff --git a/readability_button.module b/readability_button.module
index 4b39c88..a57f0f9 100644
--- a/readability_button.module
+++ b/readability_button.module
@@ -7,6 +7,29 @@
  */
 
 /**
+ * Implements hook_help().
+ */
+function readability_button_help($path, $arg) {
+  switch ($path) {
+
+    case 'admin/help#readability_button':
+      $output = '';
+      $output .= '<p>' . t('Adds a <a target="_blank" href="@readability">Readability</a> "Read Now | Later" button to individual nodes.', array('@readability' => 'https://www.readability.com')) . '</p>';
+      $output .= '<p>' . t('Features:') . '</p>';
+      $output .= '<ol>';
+      $output .= '<li>' . t('Enable the button on a per-content type basis. Also a permission to show the button on nodes to certain roles.') . '</li>';
+      $output .= '<li>' . t('In the module configuration, temporarily add the verification string (the full <meta /> element provided by the Readability web service) without editing your theme. You can disable this after you\'ve verified your domain.') . '</li>';
+      $output .= '<li>' . t('Configure whether to show only on the individual node view or also on lists (such as the blog page or taxonomy views).') . '</li>';
+      $output .= '<li>' . t('Optional <a target="_blank" href="@print-email">Print, Email,</a> <a target="_blank" href="@send-to-kindle">"Send to Kindle"</a> buttons.', array('@print-email' => 'http://blog.readability.com/2011/06/growing-roots-integration-performance-updates-to-readability/', '@send-to-kindle' => 'http://blog.readability.com/2011/06/introducing-kindle-support-for-readability/')) . '</li>';
+      $output .= '<li>' . t('Modify the colors of the foreground and background. Optional integration with <a target="_blank" href="@jquery-colorpicker">jQuery Colorpicker</a>, though not required to set color.', array('@jquery-colorpicker' => 'https://www.drupal.org/project/jquery_colorpicker')) . '</li>';
+      $output .= '<li>' . t('Change the orientation of the button from horizontal to vertical.') . '</li>';
+      $output .= '<li>' . t('If a reader is logged into their Readability reader account, clicking button for the current node\'s URL gets added to their reading list. If they\'ve contributed to Readability, part of their contribution goes towards the site\'s publisher.') . '</li>';
+      $output .= '</ol>';
+      return $output;
+  }
+}
+
+/**
  * Implements hook_init().
  */
 function readability_button_init() {
