diff --git a/includes/uuid_node.features.inc b/includes/uuid_node.features.inc
index d4155ae..0723f26 100755
--- a/includes/uuid_node.features.inc
+++ b/includes/uuid_node.features.inc
@@ -10,18 +10,24 @@
 function uuid_node_features_export_options() {
   $options = array();
 
-  $types = node_type_get_names();
+  $types = variable_get('uuid_features_node_types', array_keys(node_type_get_types()));
 
-  $query = 'SELECT n.nid, n.title, n.type, n.uuid
-    FROM {node} n ORDER BY n.type, n.title ASC';
-  $results = db_query($query);
-  foreach ($results as $node) {
+  $query = db_select('node', 'n');
+  $query->fields('n', array('nid', 'title', 'type', 'uuid'))
+    ->condition('type', $types)
+    ->orderBy('type')
+    ->orderBy('title');
+  $nodes = $query->execute()->fetchAll();
+
+  foreach ($nodes as $node) {
     $options[$node->uuid] = t('@type: @title', array(
       '@type' => $types[$node->type],
       '@title' => $node->title,
     ));
   }
 
+  drupal_alter('uuid_node_features_export_options', $options);
+
   return $options;
 }
 
diff --git a/includes/uuid_term.features.inc b/includes/uuid_term.features.inc
index 70a29ed..80e50b7 100644
--- a/includes/uuid_term.features.inc
+++ b/includes/uuid_term.features.inc
@@ -10,15 +10,23 @@
 function uuid_term_features_export_options() {
   $options = array();
 
-  $query = 'SELECT t.tid, t.name, v.name AS vname, t.uuid
-    FROM {taxonomy_term_data} t
-    INNER JOIN {taxonomy_vocabulary} v ON t.vid = v.vid
-    ORDER BY v.name ASC, t.name ASC';
-  $results = db_query($query);
+  $vocabs = variable_get('uuid_features_term_vocabs', array_keys(taxonomy_vocabulary_get_names()));
+
+  $query = db_select('taxonomy_term_data', 't');
+  $query->innerJoin('taxonomy_vocabulary', 'v', 't.vid = v.vid');
+  $query->condition('v.machine_name', $vocabs)
+    ->fields('t', array('tid', 'name', 'uuid'))
+    ->addField('v', 'name', 'vname');
+  $query->orderBy('v.name', 'ASC');
+  $query->orderBy('t.name', 'ASC');
+  $results = $query->execute()->fetchAll();
+
   foreach ($results as $term) {
     $options[$term->uuid] = $term->vname . ' - ' . $term->name;
   }
 
+  drupal_alter('uuid_term_features_export_options', $options);
+
   return $options;
 }
 
diff --git a/uuid_features.module b/uuid_features.module
index 34c807c..f0cd63a 100644
--- a/uuid_features.module
+++ b/uuid_features.module
@@ -53,3 +53,59 @@ function uuid_features_load_module_includes() {
     $loaded = TRUE;
   }
 }
+
+/**
+ * Implements hook_menu().
+ */
+function uuid_features_menu() {
+  $items = array();
+
+  $items['admin/config/system/uuid-features'] = array(
+    'title' => 'UUID Features',
+    'description' => 'Configure uuid_features export settings.',
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('uuid_features_admin'),
+    'access arguments' => array('administer uuid_features'),
+    'type' => MENU_NORMAL_ITEM,
+  );
+
+  return $items;
+}
+
+/**
+ * System settings form for uuid_features().
+ */
+function  uuid_features_admin() {
+  $types = node_type_get_types();
+
+  $options = array();
+  foreach($types as $type) {
+    $options[$type->type] = $type->name;
+  }
+  $form['uuid_features_node_types'] = array(
+    '#title' => t('Exportable node types'),
+    '#type' => 'select',
+    '#multiple' => TRUE,
+    '#options' => $options,
+    '#default_value' => variable_get('uuid_features_node_types', array_keys(node_type_get_types())),
+    '#description' => t('The node types to include as options for uuid_features export.'),
+  );
+
+  $vocabs = taxonomy_vocabulary_get_names();
+  $options = array();
+
+  foreach ($vocabs as $vid => $vocab) {
+    $options[$vocab->machine_name] = $vocab->name;
+  }
+
+  $form['uuid_features_term_vocabs'] = array(
+    '#title' => t('Exportable term vocabularies'),
+    '#type' => 'select',
+    '#multiple' => TRUE,
+    '#options' => $options,
+    '#default_value' => variable_get('uuid_features_term_vocabs', array_keys(taxonomy_get_vocabularies())),
+    '#description' => t('The vocabularies to include terms from for uuid_term export.'),
+  );
+
+  return system_settings_form($form);
+}
