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?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

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.

link|improve this answer
whoooooa, worked all right, thanks! – barraponto Dec 1 '09 at 11:46
feedback

Alt + V + T + B

link|improve this answer
Nasty one :) Got a vote up! – Marcin Gil Dec 1 '09 at 8:09
For the German Fx: Alt+A+Y+L – furtelwart Dec 1 '09 at 9:30
couldn't get it to work. should i press v+t+b together or one after the other? – barraponto Dec 1 '09 at 11:36
oops, 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... – barraponto Dec 1 '09 at 11:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.