From 9ea6d2653a74bc279511895d5fd3f11ddc44666a Mon Sep 17 00:00:00 2001 From: Gunir <134402102+gunir@users.noreply.github.com> Date: Tue, 22 Oct 2024 19:25:50 +0700 Subject: [PATCH] Disable Color Management like Chrome to maximize performance and having similar color display as Chrome Disable Color Management like Chrome to maximize performance and having similar color display as Chrome Signed-off-by: Gunir <134402102+gunir@users.noreply.github.com> --- src/browser/app/profile/zen-browser.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/browser/app/profile/zen-browser.js b/src/browser/app/profile/zen-browser.js index d72c8854b..711dd2482 100644 --- a/src/browser/app/profile/zen-browser.js +++ b/src/browser/app/profile/zen-browser.js @@ -240,3 +240,5 @@ pref("network.fetchpriority.enabled", true); // No Proxy should be default, Use system proxy allows antivirus, virus or system proxy to MITM or slowing down Zen pref("network.proxy.type", 0); +// Disable Color Management like Chrome to maximize performance and having similar color display as Chrome. Read: https://reddit.com/r/firefox/comments/1g988kf/ +pref("gfx.color_management.mode", 0);