From e60476384a86c9ed5b0017d466bc98f5a05fd238 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 8 Nov 2023 19:48:29 -0500 Subject: [PATCH] search: new file; disable automatic search from the URL bar --- search | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 search diff --git a/search b/search new file mode 100644 index 0000000..2d284c6 --- /dev/null +++ b/search @@ -0,0 +1,12 @@ +/* Search settings */ + +/* Don't search from the URL bar. + * + * This is an information disclosure; making a typo in a URL is not a + * valid reason to tell Google where I was trying to go. + * + * References: + * + * 1. https://kb.mozillazine.org/Keyword.enabled + */ +user_pref("keyword.enabled", false); -- 2.43.2