diff --git a/web/packages/extension/webpack.config.js b/web/packages/extension/webpack.config.js index 722d8c12b..a1092bd49 100644 --- a/web/packages/extension/webpack.config.js +++ b/web/packages/extension/webpack.config.js @@ -39,6 +39,10 @@ function transformManifest(content, env) { /(script-src\s+[^;]*)(;|$)/i, "$1 'wasm-eval'$2" ); + + // Chrome runs the extension in a single shared process by default, + // which prevents extension pages from loading in Incognito tabs + manifest.incognito = "split"; } return JSON.stringify(manifest);