From a74785002ec011315ec973f10b477dcd3bf62938 Mon Sep 17 00:00:00 2001 From: yokoffing <11689349+yokoffing@users.noreply.github.com> Date: Tue, 10 Oct 2023 13:46:38 -0400 Subject: [PATCH] Updated Optional Hardening (markdown) --- Optional-Hardening.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Optional-Hardening.md b/Optional-Hardening.md index 21ed02c..a514753 100644 --- a/Optional-Hardening.md +++ b/Optional-Hardening.md @@ -39,7 +39,7 @@ Disable saving passwords, credit cards, and addresses if you use a password mana user_pref("signon.rememberSignons", false); ``` -#### Address & credit card +#### Addresses & credit cards * `☰` *→ Settings → Privacy & Security → Forms and Autofill* ```javascript // PREF: disable address and credit card manager @@ -59,6 +59,16 @@ user_pref("urlclassifier.features.socialtracking.skipURLs", ""); *** +### Top Sites in URL bar +Do not show top sites when you click on the address bar. +* `☰` *→ Settings → Privacy & Security → Address Bar → Shortcuts* +```javascript +// PREF: restore top sites dropdown suggestions with empty query +user_pref("browser.urlbar.suggest.topsites", false); // Shortcuts (Top Sites) +``` + +*** + ### HTTPS-Only Mode We already [block](https://github.com/yokoffing/Betterfox/blob/df5fc26a1bdccd30e01f3c1dfe69a09a2c050410/Securefox.js#L810-L827) HTTP subresources from loading on HTTPS pages and [attempt to upgrade](https://github.com/yokoffing/Betterfox/blob/df5fc26a1bdccd30e01f3c1dfe69a09a2c050410/Securefox.js#L545-L550) HTTP site navigation to HTTPS.