diff --git a/clone.module b/clone.module
index 29003dd..5f101d6 100644
--- a/clone.module
+++ b/clone.module
@@ -129,3 +129,16 @@ function clone_form_alter(&$form, $form_state, $form_id) {
     }
   }
 }
+
+/**
+ * Implements hook_form_FORM_ID_alter().
+ */
+function clone_form_node_admin_content_alter(&$form, $form_state, $form_id){
+  // Expose a Clone operation on each node.
+  foreach($form['admin']['nodes']['#options'] as $nid => &$node){
+    $node['operations']['data']['#links']['clone'] = array(
+      'title' => t('Clone'),
+      'href' => 'node/' . $nid . '/clone',
+    );
+  }
+}
