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

Updated Common Overrides (markdown)

yokoffing
2023-10-17 13:14:06 -04:00
parent a9dfd06286
commit cbcc246eee
+5 -4
@@ -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);