From cbcc246eee23cb87817d8de5ca990491c527bb59 Mon Sep 17 00:00:00 2001 From: yokoffing <11689349+yokoffing@users.noreply.github.com> Date: Tue, 17 Oct 2023 13:14:06 -0400 Subject: [PATCH] Updated Common Overrides (markdown) --- Common-Overrides.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Common-Overrides.md b/Common-Overrides.md index f1c708b..c267876 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -81,12 +81,14 @@ Top sites (pinned site shortcuts) are removed for a clean new tab page. * `☰` *→ Settings → Home → Firefox Home Content* ```javascript -// PREF: restore Top Sites on New Tab page and remove sponsored content +// PREF: restore Top Sites on New Tab page user_pref("browser.newtabpage.activity-stream.feeds.topsites", true); // Shortcuts +user_pref("browser.newtabpage.activity-stream.default.sites", ""); // clear default topsites + +// PREF: remove sponsored content on New Tab page user_pref("browser.newtabpage.activity-stream.showSponsoredTopSites", false); // Sponsored shortcuts user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); // Recommended by Pocket user_pref("browser.newtabpage.activity-stream.showSponsored", false); // Sponsored Stories -user_pref("browser.newtabpage.activity-stream.default.sites", ""); // clear default topsites ``` #### URL bar @@ -95,7 +97,7 @@ Suggest your most visited sites when you click the address bar. ```javascript // PREF: restore top sites dropdown suggestions with empty query -user_pref("browser.urlbar.suggest.topsites", false); +user_pref("browser.urlbar.suggest.topsites", true); ``` #### Alternatives @@ -110,7 +112,6 @@ user_pref("browser.urlbar.suggest.topsites", false); * `☰` *→ Settings → Search → Search Suggestions → Provide search suggestions* -You can still use [search shortcuts](https://support.mozilla.org/en-US/kb/assign-shortcuts-search-engines) and [bookmark keywords](https://felixcrux.com/blog/favourite-firefox-feature-keyword-search-bookmarks) ([YouTube example](https://youtu.be/bGTBH9yr8uw?si=FvQGmZqFz9n2JZT0&t=1080)). ```javascript // PREF: restore search engine suggestions user_pref("browser.search.suggest.enabled", true);