Skip to content

Commit 934aa42

Browse files
brendankennypaulirish
authored andcommitted
open extension's report in new window. (fix for incognito) (#2734)
1 parent 37fd38c commit 934aa42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lighthouse-extension/app/src/lighthouse-background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ window.runLighthouseInExtension = function(options, categoryIDs) {
129129
filterOutArtifacts(results);
130130
// return enableOtherChromeExtensions(true).then(_ => {
131131
const blobURL = window.createReportPageAsBlob(results, 'extension');
132-
chrome.tabs.create({url: blobURL});
132+
chrome.windows.create({url: blobURL});
133133
// });
134134
}).catch(err => {
135135
// return enableOtherChromeExtensions(true).then(_ => {

0 commit comments

Comments
 (0)