From 7b93a92488dea29f4f8f754abaa3e61f844eca2c Mon Sep 17 00:00:00 2001 From: yokoffing <11689349+yokoffing@users.noreply.github.com> Date: Thu, 13 Mar 2025 09:23:53 -0400 Subject: [PATCH] Updated Optional Hardening (markdown) --- Optional-Hardening.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Optional-Hardening.md b/Optional-Hardening.md index b1b77d2..a7fe5c1 100644 --- a/Optional-Hardening.md +++ b/Optional-Hardening.md @@ -134,13 +134,13 @@ Remove top sites (pinned site shortcuts) for a clean new tab page. * `☰` *→ Settings → Home → Firefox Home Content* ```javascript -// PREF: remove site shortcut thumbnails on New Tab page +// PREF: hide site shortcut thumbnails on New Tab page user_pref("browser.newtabpage.activity-stream.feeds.topsites", false); // PREF: hide weather on New Tab page user_pref("browser.newtabpage.activity-stream.showWeather", false); -// PREF: disable dropdown suggestions with empty query in the address bar [OPTIONAL] +// PREF: hide dropdown suggestions when clicking on the address bar user_pref("browser.urlbar.suggest.topsites", false); ```