Shortcut key for bookmark toolbar in Firefox

7

I'd like to have a shortcut key that shows/hides the bookmark toolbar (not the sidebar). (Yes, I've got the idea from Chrome). I've been searching for a solution to this particular itch, but found none. Is it possible?

Capi Etheriel

Posted 2009-12-01T02:32:02.323

Reputation: 668

Answers

4

You can use Hide BookmarksBar extension

wik

Posted 2009-12-01T02:32:02.323

Reputation: 194

+1 because I have tested this add-on version 3.3.1-signed.1-signed and it works for Firefox 46.x (only tested in Linux, untested in Windows). – None – 2016-06-08T15:01:27.227

The default hotkey is set to Ctrl+Alt+L but some users i.e. Linux users might disagree because this combination key is used for locking current session. In such case, change the combination key to something like Ctrl+Shift+B. – None – 2016-06-08T16:49:05.997

1

This used to be a great option. However, with the phasing out of "legacy" extensions, it no longer works, and I feel it's unlikely to be updated as a WebExtension. Please vote for this Firefox bug on Bugzilla.

– TheDudeAbides – 2018-02-21T22:39:24.927

17

Alt + V, T, B

Open "View" menu > Toolbars > Bookmarks Toolbar

quickcel

Posted 2009-12-01T02:32:02.323

Reputation: 4 203

For the German Fx: Alt+A+Y+L – guerda – 2009-12-01T09:30:37.317

couldn't get it to work. should i press v+t+b together or one after the other? – Capi Etheriel – 2009-12-01T11:36:32.803

1oops, got it. you mean, use the menu shortcuts, right? i knew that, but not only i have to type 4 buttons, i'd need the menu to be there in the first place. i usually turn them off... – Capi Etheriel – 2009-12-01T11:38:17.247

3

You can use the Keyconfig add-on and this script:

var toolbar = document.getElementById("PersonalToolbar");
toolbar.collapsed = !toolbar.collapsed;
document.persist(toolbar.id, "collapsed");

After installing Keyconfig, press Ctrl + Shift + F12 to bring up the key binding interface. Create a new shortcut using the code above, and bind it to any key combination you want. Tested and working in Firefox 3.5.5.

John T

Posted 2009-12-01T02:32:02.323

Reputation: 149 037

No longer an option with mainstream versions of Firefox; if you wanted to keep using Keyconfig (or this updated version) you would need the ESR release or a third-party fork of Firefox. Even ESR will drop support for the "legacy" extensions later this year. A better long-term solution is to just get the keyboard shortcut added to Firefox itself; see comments above for the relevant Bugzilla bug.

– TheDudeAbides – 2018-02-21T23:25:21.900