Previous posts: inject in the unified profiles iframe

We previously added support of the previous posts links for unified
profiles, but unfortunately we forgot to change the manifest so it is
also injected when the profile is inside an iframe in the Community
Console. This change fixes this.

Change-Id: I0d2c9424dede33a9aa79c6f7169a23e76c4b55d5
diff --git a/src/content_scripts/console_inject.js b/src/content_scripts/console_inject.js
index efc18c5..c8fe462 100644
--- a/src/content_scripts/console_inject.js
+++ b/src/content_scripts/console_inject.js
@@ -581,7 +581,6 @@
 var unifiedProfilesFix = {
   checkIframe(iframe) {
     var srcRegex = /support.*\.google\.com\/profile\//;
-    console.log(srcRegex.test(iframe.src ?? ''));
     return srcRegex.test(iframe.src ?? '');
   },
   fixIframe(iframe) {
diff --git a/src/content_scripts/profile_inject.js b/src/content_scripts/profile_inject.js
index dd5e68f..d28d3ec 100644
--- a/src/content_scripts/profile_inject.js
+++ b/src/content_scripts/profile_inject.js
@@ -26,6 +26,7 @@
   var a = document.createElement('a');
   a.classList.add('TWPT-user-profile__user-link', 'TWPT-user-link');
   a.href = url;
+  a.target = '_parent';
   a.setAttribute(
       'data-stats-id', 'user-posts-link--tw-power-tools-by-avm99963');
 
diff --git a/templates/manifest.gjson b/templates/manifest.gjson
index eaba14e..6f25516 100644
--- a/templates/manifest.gjson
+++ b/templates/manifest.gjson
@@ -43,6 +43,7 @@
     },
     {
       "matches": ["https://support.google.com/*/profile/*", "https://support.google.com/profile/*"],
+      "all_frames": true,
       "js": ["common/content_scripts.js", "content_scripts/profile_inject.js"],
       "css": ["common/forum.css"]
     }