user.js

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 6147fed61c4f6f0a13f38947598ee20343c2531f
parent 54f79604da3f631febfe066e313ca5dec3b36ae1
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date:   Wed, 30 Jan 2019 15:44:08 +0000

and the rest of the 0850's

The location bar dropdown cannot be disabled via prefs except with css, in which case the whole thing is hidden regardless of he above prefs. So there is no point in making any of them active. This is also in line with what we can achieve with relaxed and hardened tags / sticky issues - that is we can find a better balance, Shoulder surfers is a low risk, not even Tor Browser disables this stuff. People need to take responsibility and/or use common sense. Sure, we can leave em in for users to know about and enable if they want. End of story.

userChrome.css code is
```css
/* locationbar dropdown FF65+ */
#PopupAutoCompleteRichResult {display: none!important;}
```
Diffstat:
Muser.js | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/user.js b/user.js @@ -583,13 +583,13 @@ user_pref("browser.urlbar.speculativeConnect.enabled", false); // user_pref("browser.urlbar.maxRichResults", 0); /* 0850d: disable location bar autofill * [1] http://kb.mozillazine.org/Inline_autocomplete ***/ -user_pref("browser.urlbar.autoFill", false); + // user_pref("browser.urlbar.autoFill", false); /* 0850e: disable location bar one-off searches [FF51+] * [1] https://www.ghacks.net/2016/08/09/firefox-one-off-searches-address-bar/ ***/ // user_pref("browser.urlbar.oneOffSearches", false); /* 0850f: disable location bar suggesting local search history [FF57+] * [1] https://bugzilla.mozilla.org/1181644 ***/ -user_pref("browser.urlbar.maxHistoricalSearchSuggestions", 0); + // user_pref("browser.urlbar.maxHistoricalSearchSuggestions", 0); /* 0860: disable search and form history * [NOTE] You can clear formdata on exiting Firefox (see 2803) * [SETTING] Privacy & Security>History>Custom Settings>Remember search and form history ***/