Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions packages/core/src/viewport/launch-profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ export const CHROME_AUTOMATION_FLAGS = [
'--disable-infobars',
'--disable-session-crashed-bubble',
'--force-color-profile=srgb',
// Modern Chrome flags (112+)
'--disable-search-engine-choice-screen',
'--hide-crash-restore-bubble',
];

/**
Expand All @@ -40,33 +43,34 @@ export const CHROME_AUTOMATION_FLAGS = [
export const CHROME_STRIPPED_FEATURES = [
'InterestFeedContentSuggestions',
'Translate',
'TranslateUI',
'OptimizationHints',
'MediaRouter',
'DialMediaRouteProvider',
'CalculatorTool',
'CrashedTabFinder',
'AutofillServerCommunication',
'BackgroundTracing',
'NtpTiles',
'OneGoogleBar',
'ReadLater',
'NTPArticleSuggestions',
'NTPSigninPromo',
'CrossDeviceSync',
'PrivacySandboxSettings4',
'PrivacySandboxPromptV2',
'SidePanelPinning',
'HistoryEmbeddings',
'PrivacySandboxPromptV2',
'GlobalMediaControls',
'ComposeService',
'AutofillFeature',
'NTPSigninPromo',
'Prerender2',
'TabGroupsSave',
'SearchEngineChoice',
'InfoBarDisplay',
];

export const ANTI_DETECTION_FLAGS = [
'--disable-blink-features=AutomationControlled',
'--disable-features=AutomationControlled',
'--disable-automation-extension',
];

export const CONTAINER_FLAGS = [
Expand Down