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

Updated Common Overrides (markdown)

yokoffing
2025-04-01 18:15:32 -04:00
parent 22ba76a060
commit 99b7356337
+17 -4
@@ -148,7 +148,7 @@ user_pref("browser.newtabpage.activity-stream.showWeather", true);
### Search settings
#### Allow search engine suggestions
[Search suggestions](https://support.mozilla.org/en-US/kb/search-firefox-address-bar#w_search-suggestions) are disabled in the URL bar to keep everything you type from going to Google.
[Search suggestions](https://support.mozilla.org/en-US/kb/search-firefox-address-bar#w_search-suggestions) from the URL bar are disabled in Betterfox to keep everything you type from going to Google.
* `☰` *→ Settings → Search → Search Suggestions → Provide search suggestions*
@@ -158,13 +158,26 @@ user_pref("browser.search.suggest.enabled", true);
```
#### Change your default search engine
You can also [select a default search engine](https://support.mozilla.org/en-US/kb/change-your-default-search-settings-firefox#w_default-search-engine) just for [Private Browsing](https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history) windows. (This is an option after you apply the `user.js` and restart.)
You can also select a [default search engine](https://support.mozilla.org/en-US/kb/change-your-default-search-settings-firefox#w_default-search-engine) just for [Private Browsing](https://support.mozilla.org/en-US/kb/private-browsing-use-firefox-without-history) windows. (This is an option after you apply the `user.js` and restart.)
* `☰` *→ Settings → Search → Default Search Engine*
Change your default search engine to DuckDuckGo, or add a [premium](https://help.kagi.com/kagi/why-kagi/why-pay-for-search.html) search engine like [Kagi](https://kagi.com/welcome).
To add a custom search engine like [Brave Search](https://search.brave.com/) or a [premium](https://help.kagi.com/kagi/why-kagi/why-pay-for-search.html) search engine like [Kagi](https://kagi.com/welcome), you can easily [add a search engine from the address bar](https://support.mozilla.org/en-US/kb/add-or-remove-search-engine-firefox#w_add-a-search-engine-from-the-address-bar).
For Kagi, if you want search suggestions in the URL bar, make sure to follow the first steps [here](https://help.kagi.com/kagi/getting-started/setting-default.html#firefox_desktop). Then use the latter steps to setup Kagi for private browsing using your [private session link](https://help.kagi.com/kagi/getting-started/setting-default.html#private_session). Otherwise, you can just use the private session link. Don't forget to add `&q=%s` to the end of the session link.
> [!NOTE]
> For Kagi, if you want search suggestions in the URL bar, make sure to follow the first steps in their [Firefox tutorial](https://help.kagi.com/kagi/getting-started/setting-default.html#firefox_browsers). Then, use the latter steps to setup Kagi for Private Browsing using your [private session link](https://help.kagi.com/kagi/getting-started/setting-default.html#private_session).
>
> If you don't care about enabling search suggestions, then you can use the private session link both as your default and private search engine.
>
> Don't forget to add `&q=%s` to the end of the session link!
#### Disable unified search button
In v.137.0, this is "a new, easy-to-access button in the address bar helps you switch between search engines and search modes with ease."
```javascript
// PREF: disable unified search button
user_pref("browser.urlbar.scotchBonnet.enableOverride", false);
```
***