2023-04-30 16:31:36 +02:00
|
|
|
#!/bin/sh
|
|
|
|
/usr/local/bin/chrome \
|
|
|
|
--bwsi \
|
|
|
|
--disable-3d-apis \
|
|
|
|
--disable-angle-features=allowETCFormats \
|
2023-08-28 08:12:53 +02:00
|
|
|
--disable-auto-reload \
|
2023-04-30 16:31:36 +02:00
|
|
|
--disable-breakpad \
|
|
|
|
--disable-client-side-phishing-detection \
|
|
|
|
--disable-component-cloud-policy \
|
|
|
|
--disable-component-update \
|
|
|
|
--disable-crash-reporter \
|
|
|
|
--disable-device-discovery-notifications \
|
|
|
|
--disable-features=WebAssembly,AsmJsToWebAssembly,WebAssemblyStreaming \
|
|
|
|
--disable-logging \
|
|
|
|
--disable-login-animations \
|
|
|
|
--disable-notifications \
|
|
|
|
--disable-pinch \
|
|
|
|
--disable-vulkan-surface \
|
2023-08-28 08:12:53 +02:00
|
|
|
--disable-software-rasterizer \
|
2023-04-30 16:31:36 +02:00
|
|
|
--disable-gpu-process-crash-limit \
|
|
|
|
--disable-chrome-browser-cloud-management \
|
|
|
|
--disable-field-trial-config \
|
|
|
|
--disable-cookie-encryption \
|
|
|
|
--disable-cloud-print-proxy \
|
|
|
|
--enable-early-process-singleton \
|
|
|
|
--dbus-stub \
|
2023-08-28 08:12:53 +02:00
|
|
|
--cros-disks-fake \
|
2023-04-30 16:31:36 +02:00
|
|
|
--disable-stack-profiler \
|
|
|
|
--disable-touch-drag-drop \
|
|
|
|
--disable-usb-keyboard-detect \
|
|
|
|
--disable-wayland-ime \
|
2023-08-28 08:12:53 +02:00
|
|
|
--disable-windows10-custom-titlebar \
|
2023-04-30 16:31:36 +02:00
|
|
|
--disable-default-apps \
|
|
|
|
--disable-dev-shm-usage \
|
|
|
|
--disable-gaia-services \
|
|
|
|
--disable-gpu-early-init \
|
2023-08-28 08:12:53 +02:00
|
|
|
--disable-gpu-process-for-dx12-info-collection \
|
2023-04-30 16:31:36 +02:00
|
|
|
--disable-histogram-customizer \
|
|
|
|
--disable-in-process-stack-traces \
|
2023-08-28 08:12:53 +02:00
|
|
|
--disable-ios-password-suggestions \
|
2023-04-30 16:31:36 +02:00
|
|
|
--no-service-autorun \
|
|
|
|
--no-experiments \
|
|
|
|
--enable-low-end-device-mode \
|
|
|
|
--use-gl=swiftshader \
|
|
|
|
--disable-wayland-ime \
|
|
|
|
--enable-features=RunVideoCaptureServiceInBrowserProcess,WebUIDarkMode \
|
|
|
|
--force-dark-mode \
|
|
|
|
--hide-crash-restore-bubble \
|
|
|
|
--js-flags=--noexpose-wasm \
|
|
|
|
--no-default-browser-check \
|
|
|
|
--no-proxy-server \
|
|
|
|
--no-recovery-component \
|
|
|
|
--password-store=basic \
|
|
|
|
--structured-metrics-disabled \
|
|
|
|
--wm-window-animations-disabled \
|
2023-08-28 08:12:53 +02:00
|
|
|
--new-window "$@"
|
2023-04-30 16:31:36 +02:00
|
|
|
|
|
|
|
#--use-gl=egl \
|
|
|
|
# --disable-yuv-image-decoding \
|
|
|
|
# --use-gl=desktop \
|
|
|
|
# --high-dpi-support=1 \
|
|
|
|
# --force-device-scale-factor=1.5 \
|