1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 07:30:47 +05:30

Updated Optional Hardening (markdown)

yokoffing
2025-03-13 09:23:53 -04:00
parent 950602b32a
commit 7b93a92488
+2 -2
@@ -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);
```