diff --git a/wordfilter.info b/wordfilter.info
index 6ed38a7..c9b9f2c 100644
--- a/wordfilter.info
+++ b/wordfilter.info
@@ -1,3 +1,4 @@
 name = Word Filter
 description = "Replaces words inside posts with filtered versions."
-core = 6.x
\ No newline at end of file
+core = 6.x
+dependencies[] = import_export_tools
\ No newline at end of file
diff --git a/wordfilter.module b/wordfilter.module
index 11251f7..d603c11 100644
--- a/wordfilter.module
+++ b/wordfilter.module
@@ -72,6 +72,24 @@ function wordfilter_menu() {
     'type' => MENU_LOCAL_TASK,
   );
 
+  $items['admin/settings/wordfilter/export'] = array(
+    'title' => 'Export',
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('import_export_tools_export_table_form', 'wordfilter', array('title' => 'Wordfilter Export')),
+    'access callback' => 'user_access',
+    'access arguments' => array('administer words filtered'),
+    'type' => MENU_LOCAL_TASK,
+  );
+
+  $items['admin/settings/wordfilter/import'] = array(
+    'title' => 'Import',
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('import_export_tools_import_table_form', 'wordfilter', array('title' => 'Wordfilter Import')),
+    'access callback' => 'user_access',
+    'access arguments' => array('administer words filtered'),
+    'type' => MENU_LOCAL_TASK, 
+  );
+
   $items['admin/settings/wordfilter/test'] = array(
     'title' => 'Test',
     'page callback' => 'drupal_get_form',
