搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Shortcut to (un)hide bookmark bar?

  • 5 个回答
  • 2 人有此问题
  • 16 次查看
  • 最后回复者为 cor-el

more options

Shortcut to (un)hide bookmark bar?

Shortcut to (un)hide bookmark bar?

由user316481287857416984750827541791736039599于修改

所有回复 (5)

more options

Hi, there isn't a keyboard shortcut Keyboard shortcuts - Perform common Firefox tasks quickly, however you can right click in the tab bar - but not on a tab.

You might be able to make it auto-hide using userChrome.css See https://www.userchrome.org/what-is-userchrome-css.html and https://github.com/Timvde/UserChrome-Tweaks/blob/master/toolbars/sliding-bookmarks-bar.css Also do a search in https://www.reddit.com/r/FirefoxCSS/

If your question is resolved by this or another answer, please take a minute to let us know. Thank you!

由Scribe于修改

more options

A possible workaround is to use the keyboard to open the View menu (Alt+V), T opens the toolbar menu and B toggles the Bookmarks Toolbar.

  • Alt+V T B
more options

Please, gents, make a simple shortcut available for this - ctrl-alt-B would be great.

It is rather annoying not having one, and the ability for mouse gestures to pick up lack of options like this is also curbed.

Or even better, cut to the chase: make sure any command can have a kb shortcut.

more options

Hi ozimage, here in support we work with the Firefox we have today and can suggest relevant features, settings changes, and workarounds.

If you want to propose changes to future versions of Firefox, you can submit suggestions through one or more of the following links:

It would be really great if Firefox had a global shortcut creator/changer. That's probably a long ways off, but we might see one to change/deconflict the keyboard shortcuts of extensions by the end of the year or shortly thereafter. That would set the stage for something bigger.

more options

This code in the Browser Console will toggle the Bookmarks Toolbar on/off.

(function(){ /*toggle toolbar*/
var doc = Services.wm.getMostRecentWindow("navigator:browser").window.document;
var tb = doc.getElementById("PersonalToolbar");
var c="collapsed";
if(tb){tb.setAttribute(c,tb.getAttribute(c)=="true"?"false":"true")}
})();