We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0f83d5 commit 0669dc5Copy full SHA for 0669dc5
src/interceptors/chromium-based-interceptors.ts
@@ -47,10 +47,12 @@ const getChromiumLaunchOptions = async (
47
options: [
48
// Trust our CA certificate's fingerprint:
49
`--ignore-certificate-errors-spki-list=${spkiFingerprint}`,
50
+ // Disable annoying "What's New" page
51
+ '--disable-features=ChromeWhatsNewUI',
52
// Avoid annoying extra network noise:
53
'--disable-background-networking',
- // Disable annoying "What's New" page
- '--disable-features=ChromeWhatsNewUI'
54
+ '--disable-component-update',
55
+ '--check-for-update-interval=31536000' // Don't update for a year
56
]
57
};
58
}
0 commit comments