mirror of
https://github.com/yokoffing/Betterfox.git
synced 2026-06-12 15:40:48 +05:30
Updated Common Overrides (markdown)
+5
-4
@@ -81,12 +81,14 @@ Top sites (pinned site shortcuts) are removed for a clean new tab page.
|
|||||||
* `☰` *→ Settings → Home → Firefox Home Content*
|
* `☰` *→ Settings → Home → Firefox Home Content*
|
||||||
|
|
||||||
```javascript
|
```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.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.showSponsoredTopSites", false); // Sponsored shortcuts
|
||||||
user_pref("browser.newtabpage.activity-stream.feeds.section.topstories", false); // Recommended by Pocket
|
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.showSponsored", false); // Sponsored Stories
|
||||||
user_pref("browser.newtabpage.activity-stream.default.sites", ""); // clear default topsites
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### URL bar
|
#### URL bar
|
||||||
@@ -95,7 +97,7 @@ Suggest your most visited sites when you click the address bar.
|
|||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
// PREF: restore top sites dropdown suggestions with empty query
|
// PREF: restore top sites dropdown suggestions with empty query
|
||||||
user_pref("browser.urlbar.suggest.topsites", false);
|
user_pref("browser.urlbar.suggest.topsites", true);
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Alternatives
|
#### Alternatives
|
||||||
@@ -110,7 +112,6 @@ user_pref("browser.urlbar.suggest.topsites", false);
|
|||||||
|
|
||||||
* `☰` *→ Settings → Search → Search Suggestions → Provide search suggestions*
|
* `☰` *→ 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
|
```javascript
|
||||||
// PREF: restore search engine suggestions
|
// PREF: restore search engine suggestions
|
||||||
user_pref("browser.search.suggest.enabled", true);
|
user_pref("browser.search.suggest.enabled", true);
|
||||||
|
|||||||
Reference in New Issue
Block a user