Home » Questions » Computers [ Ask a new question ]

Shortcut key for bookmark toolbar in Firefox

Shortcut key for bookmark toolbar in Firefox

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?

Asked by: Guest | Views: 247
Total answers/comments: 2
Guest [Entry]

You can use Hide BookmarksBar extension
Guest [Entry]

"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."