Skip to content

Commit 0669dc5

Browse files
committed
Reduce Chromium internal request background noise
1 parent f0f83d5 commit 0669dc5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/interceptors/chromium-based-interceptors.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,12 @@ const getChromiumLaunchOptions = async (
4747
options: [
4848
// Trust our CA certificate's fingerprint:
4949
`--ignore-certificate-errors-spki-list=${spkiFingerprint}`,
50+
// Disable annoying "What's New" page
51+
'--disable-features=ChromeWhatsNewUI',
5052
// Avoid annoying extra network noise:
5153
'--disable-background-networking',
52-
// Disable annoying "What's New" page
53-
'--disable-features=ChromeWhatsNewUI'
54+
'--disable-component-update',
55+
'--check-for-update-interval=31536000' // Don't update for a year
5456
]
5557
};
5658
}

0 commit comments

Comments
 (0)