From 934aa42b12459e996b478735b2b75e805cc6aa66 Mon Sep 17 00:00:00 2001 From: Brendan Kenny Date: Mon, 24 Jul 2017 17:21:32 -0700 Subject: [PATCH] open extension's report in new window. (fix for incognito) (#2734) --- lighthouse-extension/app/src/lighthouse-background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lighthouse-extension/app/src/lighthouse-background.js b/lighthouse-extension/app/src/lighthouse-background.js index fb8bc4617ab9..c81e1e5ca42c 100644 --- a/lighthouse-extension/app/src/lighthouse-background.js +++ b/lighthouse-extension/app/src/lighthouse-background.js @@ -129,7 +129,7 @@ window.runLighthouseInExtension = function(options, categoryIDs) { filterOutArtifacts(results); // return enableOtherChromeExtensions(true).then(_ => { const blobURL = window.createReportPageAsBlob(results, 'extension'); - chrome.tabs.create({url: blobURL}); + chrome.windows.create({url: blobURL}); // }); }).catch(err => { // return enableOtherChromeExtensions(true).then(_ => {