morgan pushed to branch mullvad-browser-153.0esr-16.0-1 at The Tor Project / Applications / Mullvad Browser Commits: c999d3d0 by Pier Angelo Vendrame at 2026-08-05T15:31:00+00:00 fixup! MB 21: Disable the password manager MB 538: Use settings config for our customization. - - - - - cf1410d6 by Henry Wilkes at 2026-08-05T15:31:00+00:00 amend! MB 34: Hide unsafe and unwanted preferences UI MB 34: Hide unwanted setting controls in Mullvad Browser. - - - - - 4 changed files: - browser/components/preferences/config/passwords-autofill.mjs - browser/components/preferences/config/search.mjs - browser/components/preferences/preferences.js - browser/components/preferences/search.inc.xhtml Changes: ===================================== browser/components/preferences/config/passwords-autofill.mjs ===================================== @@ -675,6 +675,9 @@ SettingGroupManager.registerGroups({ inProgress: false, id: "passwordsGroup", subcategory: "logins", + // Hide all password controls. mullvad-browser#21. + hidden: true, + hiddenFromSearch: true, l10nId: "forms-passwords-header", headingLevel: 2, items: [ ===================================== browser/components/preferences/config/search.mjs ===================================== @@ -286,6 +286,8 @@ Preferences.addSetting({ Preferences.addSetting({ id: "suggestionsInSearchFieldsCheckbox", deps: ["searchSuggestionsEnabledPref", "urlbarSuggestionsEnabledPref"], + // Hide search suggestions. mullvad-browser#34. + visible: () => false, get(_, deps) { let searchBarVisible = !!lazy.CustomizableUI.getPlacementOfWidget("search-container"); ===================================== browser/components/preferences/preferences.js ===================================== @@ -384,7 +384,7 @@ const CONFIG_PANES = Object.freeze({ groupIds: ["passwords", "payments", "addresses"], module: "chrome://browser/content/preferences/config/passwords-autofill.mjs", - visible: () => srdSectionEnabled("passwordsAutofill"), + visible: () => false, }, privacy: { l10nId: "pane-privacy-section", ===================================== browser/components/preferences/search.inc.xhtml ===================================== @@ -17,7 +17,7 @@ <!-- Search Suggestions --> - <html:setting-group groupid="searchSuggestions" data-srd-migrated="" data-category="paneSearch" hidden="true" data-hidden-from-search="true" /> + <html:setting-group groupid="searchSuggestions" data-srd-migrated="" data-category="paneSearch" hidden="true" /> <!-- Firefox Suggest / Address Bar --> <html:setting-group groupid="firefoxSuggest" data-category="paneSearch" hidden="true" data-subcategory="locationBar" data-srd-migrated=""/> View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/a52... -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/a52... You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help