Skip to content

Commit f0f83d5

Browse files
committed
Disable Chrome's new What's New page
Appeared at some point very recently. Only seems to appear on Mac, not on Linux?
1 parent c022bde commit f0f83d5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/interceptors/chromium-based-interceptors.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ const getChromiumLaunchOptions = async (
4848
// Trust our CA certificate's fingerprint:
4949
`--ignore-certificate-errors-spki-list=${spkiFingerprint}`,
5050
// Avoid annoying extra network noise:
51-
'--disable-background-networking'
51+
'--disable-background-networking',
52+
// Disable annoying "What's New" page
53+
'--disable-features=ChromeWhatsNewUI'
5254
]
5355
};
5456
}

0 commit comments

Comments
 (0)