diff --git a/plugins/find_replace_multiple.inc b/plugins/find_replace_multiple.inc
new file mode 100755
index 0000000..21052a3
--- /dev/null
+++ b/plugins/find_replace_multiple.inc
@@ -0,0 +1,62 @@
+<?php
+
+/**
+ * @file
+ * Feeds tamper plugin to find/replace multiple needle/haystack text pairs.
+ */
+
+$plugin = array(
+  'form' => 'feeds_tamper_find_replace_multiple_form',
+  'callback' => 'feeds_tamper_find_replace_multiple_callback',
+  'validate' => 'feeds_tamper_find_replace_multiple_validate',
+  'name' => 'Find replace multiple',
+  'multi' => 'loop',
+  'category' => 'Text',
+);
+
+function feeds_tamper_find_replace_multiple_form($importer, $element_key, $settings) {
+  $pairs = '';
+  if (isset($settings['pairs'])) {
+    foreach ($settings['pairs'] as $pair) {
+      $pairs .= "\n{$pair['source']}|{$pair['target']}";
+    }
+  }
+  $form = array();
+  $form['pairs'] = array(
+    '#type' => 'textarea',
+    '#title' => t('Replace pairs'),
+    '#description' => t('One pair per line, as source|target'),
+    '#required' => TRUE,
+    '#default_value' => $pairs,
+  );
+  $form['full'] = array(
+    '#type' => 'checkbox',
+    '#default_value' => !empty($settings['full']),
+    '#title' => t('Full comparison'),
+    '#description' => t('Replace only if the full source field match the full source replacement string.'),
+  );
+
+  return $form;
+}
+
+function feeds_tamper_find_replace_multiple_validate(&$settings) {
+  $raw = $settings['pairs'];
+  $pairs = array();
+  foreach (explode("\n", $raw) as $pair) {
+    list($source, $target) = explode('|', $pair);
+    $pairs[] = array('source' => $source, 'target' => trim($target));
+  }
+  $settings['pairs'] = $pairs;
+}
+
+function feeds_tamper_find_replace_multiple_callback($result, $item_key, $element_key, &$field, $settings) {
+  foreach ($settings['pairs'] as $replace) {
+    if (!empty($settings['full'])) {
+      if ($replace['source'] === $field) {
+         $field = $replace['target'];
+      }
+    } else {
+      $field = preg_replace('#' . $replace['source'] . '#', $replace['target'], $field);
+    }
+  }
+}
