mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 20:22:03 -08:00
improve process isolation
This commit is contained in:
parent
0f6583410e
commit
14c5b02444
1 changed files with 8 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ defaultPref("editor.truncate_user_pastes", false);
|
||||||
|
|
||||||
// Enable content isolation (WAFs can detect this!)
|
// Enable content isolation (WAFs can detect this!)
|
||||||
defaultPref("fission.autostart", true);
|
defaultPref("fission.autostart", true);
|
||||||
defaultPref("fission.webContentIsolationStrategy", 1);
|
defaultPref("fission.webContentIsolationStrategy", 2);
|
||||||
|
|
||||||
// Use dark theme by default
|
// Use dark theme by default
|
||||||
defaultPref("ui.systemUsesDarkTheme", 1);
|
defaultPref("ui.systemUsesDarkTheme", 1);
|
||||||
|
|
@ -658,3 +658,9 @@ defaultPref("devtools.toolbox.host", "window");
|
||||||
|
|
||||||
// Disable JPEG-XL by default
|
// Disable JPEG-XL by default
|
||||||
user_pref("image.jxl.enabled", false);
|
user_pref("image.jxl.enabled", false);
|
||||||
|
|
||||||
|
// Disable tab process reuse entirely
|
||||||
|
defaultPref("browser.tabs.remote.separatePrivilegedContentProcess", true);
|
||||||
|
defaultPref("browser.tabs.remote.separatePrivilegedMozillaWebContentProcess", true);
|
||||||
|
defaultPref("dom.ipc.keepProcessesAlive.web", 0);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue