Skip to content

Commit db545b8

Browse files
authored
Document some prefs in user.js
I have added some documentation for all the prefs I know of, would make it easier to manage this file in the future
1 parent fff8491 commit db545b8

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

  • usr/share/webapp-manager/firefox/profile

usr/share/webapp-manager/firefox/profile/user.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,21 @@ user_pref("browser.ctrlTab.previews", true);
88
user_pref("browser.tabs.warnOnClose", false);
99
user_pref("plugin.state.flash", 2);
1010
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
11+
12+
// Always show titlebar on top of window
1113
user_pref("browser.tabs.drawInTitlebar", false);
1214
user_pref("browser.tabs.inTitlebar", 0);
15+
16+
// Enable strict mode for cookie isolation and enhanced privacy
1317
user_pref("browser.contentblocking.category", "strict");
18+
19+
// Don't clear cookies in LibreWolf (and other Firefox forks)
1420
user_pref("privacy.clearOnShutdown.offlineApps", false);
1521
user_pref("privacy.sanitize.sanitizeOnShutdown", false);
1622
user_pref("privacy.sanitize.timeSpan", 1);
23+
24+
// Don't show translations popups
1725
user_pref("browser.translations.automaticallyPopup", false);
26+
27+
// Open links in new window
1828
user_pref("browser.link.open_newwindow", 2);

0 commit comments

Comments
 (0)