2024-06-13 16:07:27 +02:00
|
|
|
// vim: ft=javascript
|
|
|
|
defaultPref("identity.fxaccounts.enabled", true);
|
|
|
|
|
|
|
|
defaultPref("webgl.disabled", false);
|
|
|
|
|
|
|
|
defaultPref("browser.sessionstore.resume_from_crash", false);
|
|
|
|
|
|
|
|
// If enabled, fails with "Server is missing xdg_foreign support" on river and the GTK portal.
|
|
|
|
defaultPref("widget.use-xdg-desktop-portal.file-picker", 0);
|
|
|
|
|
2024-06-14 10:47:42 +02:00
|
|
|
[
|
|
|
|
"cache", "cookies", "history", "offlineApps", "sessions"
|
|
|
|
].forEach(s => defaultPref(`privacy.clearOnShutdown.${s}`, false));
|
|
|
|
|
|
|
|
[
|
|
|
|
"cache", "cookiesAndStorage"
|
|
|
|
].forEach(s => defaultPref(`privacy.clearOnShutdown_v2.${s}`, false))
|