diff --git a/API.txt b/API.txt
index 5e03b54..8b07eb5 100644
--- a/API.txt
+++ b/API.txt
@@ -142,4 +142,6 @@ API version 1.14
     * NODEWORDS_TYPE_ERRORPAGE
     * NODEWORDS_TYPE_OFFLINE
     * NODEWORDS_TYPE_TRACKER
-  
\ No newline at end of file
+* The page_title, dc.title and og:title tags are all set to work on all pages
+  except:
+    * NODEWORDS_TYPE_DEFAULT
diff --git a/nodewords_extra/nodewords_extra.module b/nodewords_extra/nodewords_extra.module
index 7c36171..54723d4 100644
--- a/nodewords_extra/nodewords_extra.module
+++ b/nodewords_extra/nodewords_extra.module
@@ -113,8 +113,7 @@ function nodewords_extra_nodewords_tags_info() {
     'dc.title' => array(
       'context' => array(
         'denied' => array(
-          NODEWORDS_TYPE_ERRORPAGE,
-          NODEWORDS_TYPE_OFFLINE,
+          NODEWORDS_TYPE_DEFAULT,
         ),
       ),
       'callback' => 'nodewords_extra_dc_title',
diff --git a/nodewords_og/nodewords_og.module b/nodewords_og/nodewords_og.module
index 72ed5cb..1e8a9cc 100644
--- a/nodewords_og/nodewords_og.module
+++ b/nodewords_og/nodewords_og.module
@@ -67,6 +67,11 @@ function nodewords_og_get_tags() {
   $tags = array(
     // These tags can be set on any page.
     'og:title' => array(
+      'context' => array(
+        'denied' => array(
+          NODEWORDS_TYPE_DEFAULT,
+        ),
+      ),
       'description' => t('The title of the object as it should appear in the graph.'),
       'labelsuffix' => t('Title'),
       'weight' => array('og:title' => -197),
