ignore_default_args에서 주석 처리된 옵션 정리

This commit is contained in:
암냥 2025-07-13 14:35:44 +09:00
commit 2d3677fe4a

View file

@ -78,52 +78,52 @@ async def GetProfile(headless=False):
# "--disable-features=Translate,PasswordManagerDefaultEnabled", # "--disable-features=Translate,PasswordManagerDefaultEnabled",
], ],
ignore_default_args=[ ignore_default_args=[
"--disable-datasaver-prompt", # "--disable-datasaver-prompt",
"--disable-component-extensions-with-background-pages", # "--disable-component-extensions-with-background-pages",
"--disable-prompt-on-repost", # "--disable-prompt-on-repost",
"--safeBrowse-disable-auto-update", # "--safeBrowse-disable-auto-update",
"--install-autogenerated-theme=0,0,0", # "--install-autogenerated-theme=0,0,0",
"--disable-speech-synthesis-api", # "--disable-speech-synthesis-api",
"--ash-no-nudges", # "--ash-no-nudges",
"--test-type=gpu", # "--test-type=gpu",
"--noerrdialogs", # "--noerrdialogs",
"--disable-external-intent-requests", # "--disable-external-intent-requests",
"--disable-breakpad", # "--disable-breakpad",
"--disable-backgrounding-occluded-windows", # "--disable-backgrounding-occluded-windows",
"--export-tagged-pdf", # "--export-tagged-pdf",
"--disable-focus-on-load", # "--disable-focus-on-load",
"--suppress-message-center-popups", # "--suppress-message-center-popups",
"--disable-renderer-backgrounding", # "--disable-renderer-backgrounding",
"--hide-crash-restore-bubble", # "--hide-crash-restore-bubble",
"--disable-back-forward-cache", # "--disable-back-forward-cache",
"--allow-legacy-extension-manifests", # "--allow-legacy-extension-manifests",
# "--disable-field-trial-config", # 왜 이걸 끄면 웹사이트가 압축된 형태로 보이는 진 모르곘음 # # "--disable-field-trial-config", # 왜 이걸 끄면 웹사이트가 압축된 형태로 보이는 진 모르곘음
"--disable-popup-blocking", # "--disable-popup-blocking",
"--disable-background-networking", # "--disable-background-networking",
"--no-first-run", # "--no-first-run",
"--disable-blink-features=AutomationControlled", # "--disable-blink-features=AutomationControlled",
"--password-store=basic", # "--password-store=basic",
"--enable-network-information-downlink-max", # "--enable-network-information-downlink-max",
"--allow-pre-commit-input", # "--allow-pre-commit-input",
"--enable-features=NetworkService,NetworkServiceInProcess", # "--enable-features=NetworkService,NetworkServiceInProcess",
"--metrics-recording-only", # "--metrics-recording-only",
"--silent-debugger-extension-api", # "--silent-debugger-extension-api",
"--disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate,AutomationControlled,BackForwardCache,OptimizationHints,ProcessPerSiteUpToMainFrameThreshold,InterestFeedContentSuggestions,CalculateNativeWinOcclusion,HeavyAdPrivacyMitigations,PrivacySandboxSettings4,AutofillServerCommunication,CrashReporting,OverscrollHistoryNavigation,InfiniteSessionRestore,ExtensionDisableUnsupportedDeveloper", # "--disable-features=AcceptCHFrame,AutoExpandDetailsElement,AvoidUnnecessaryBeforeUnloadCheckSync,CertificateTransparencyComponentUpdater,DestroyProfileOnBrowserClose,DialMediaRouteProvider,ExtensionManifestV2Disabled,GlobalMediaControls,HttpsUpgrades,ImprovedCookieControls,LazyFrameLoading,LensOverlay,MediaRouter,PaintHolding,ThirdPartyStoragePartitioning,Translate,AutomationControlled,BackForwardCache,OptimizationHints,ProcessPerSiteUpToMainFrameThreshold,InterestFeedContentSuggestions,CalculateNativeWinOcclusion,HeavyAdPrivacyMitigations,PrivacySandboxSettings4,AutofillServerCommunication,CrashReporting,OverscrollHistoryNavigation,InfiniteSessionRestore,ExtensionDisableUnsupportedDeveloper",
"--disable-ipc-flooding-protection", # "--disable-ipc-flooding-protection",
"--disable-hang-monitor", # "--disable-hang-monitor",
"--disable-dev-shm-usage", # "--disable-dev-shm-usage",
"--disable-client-side-phishing-detection", # "--disable-client-side-phishing-detection",
"--log-level=2", # "--log-level=2",
"--generate-pdf-document-outline", # "--generate-pdf-document-outline",
"--disable-speech-api", # "--disable-speech-api",
"--disable-search-engine-choice-screen", # "--disable-search-engine-choice-screen",
"--no-service-autorun", # "--no-service-autorun",
"--no-pings", # "--no-pings",
"--disable-component-update", # "--disable-component-update",
'--simulate-outdated-no-au="Tue, 31 Dec 2099 23:59:59 GMT"', # '--simulate-outdated-no-au="Tue, 31 Dec 2099 23:59:59 GMT"',
"--disable-background-timer-throttling", # "--disable-background-timer-throttling",
"--use-mock-keychain", # "--use-mock-keychain",
"--disable-features=IsolateOrigins,site-per-process", # "--disable-features=IsolateOrigins,site-per-process",
# 아래는 기존 예시에 있던 인자들입니다. 필요에 따라 유지하거나 제거하세요. # 아래는 기존 예시에 있던 인자들입니다. 필요에 따라 유지하거나 제거하세요.
"--enable-automation", "--enable-automation",
"--disable-extensions", "--disable-extensions",