From 5509229b80788d120ae512184355d84d07cb535a Mon Sep 17 00:00:00 2001 From: Brayden Date: Sat, 6 Apr 2024 17:40:05 +0800 Subject: [PATCH] Quick article about the resultMenu in Firefox --- content/blog/firefox-urlbar-fix-tabbing.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 content/blog/firefox-urlbar-fix-tabbing.md diff --git a/content/blog/firefox-urlbar-fix-tabbing.md b/content/blog/firefox-urlbar-fix-tabbing.md new file mode 100644 index 0000000..b8fa062 --- /dev/null +++ b/content/blog/firefox-urlbar-fix-tabbing.md @@ -0,0 +1,19 @@ +--- +title: "Fix Firefox URL Bar Tabbing" +date: 2024-04-06T17:32:48.9712605+08:00 +draft: false +--- + +Approximately 1 year ago Mozilla added a button to certain suggestions in the +URL bar. This breaks the ability to tab through results as the focus is placed +on the button instead of the item, requiring you to sometimes double tab. + +Google Chrome and its variants also do this but there's no workaround for them +as they're browsers that can charitably described as garbage. + +You can fix this with Firefox by setting the following preference to false: +``` +browser.urlbar.resultMenu.keyboardAccessible +``` + +No restart required, takes effect immediately. \ No newline at end of file