搜索 | 用户支持

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

详细了解

Streamlining Bookmarks Drop Down

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

more options

I have all my bookmarks in the drop down (technically under "Bookmarks Menu"), but I don't like that when I click the bookmarks icon, it first shows a bunch of options before I get down to the bookmarks, such as View Bookmarks Sidebar, Show all Bookmarks, Bookmarks Toolbar, Unsorted Bookmarks, etc. In order to get to my actual bookmarks, they are lower down, and sometimes I even have to scroll.

Is there anyway to remove/hid the options above my bookmarks, or at least put them below them?

Thanks!

I have all my bookmarks in the drop down (technically under "Bookmarks Menu"), but I don't like that when I click the bookmarks icon, it first shows a bunch of options before I get down to the bookmarks, such as View Bookmarks Sidebar, Show all Bookmarks, Bookmarks Toolbar, Unsorted Bookmarks, etc. In order to get to my actual bookmarks, they are lower down, and sometimes I even have to scroll. Is there anyway to remove/hid the options above my bookmarks, or at least put them below them? Thanks!

所有回复 (2)

more options

Not without an add-on (I'm not sure of one that does that either I am afraid).

Would the Bookmarks side-bar help? You can do this by clicking the Bookmarks icon and then selecting View all Bookmarks. Also you can press CTRL + B

If not you can also show the bookmarks toolbar which will put a list of your bookmarks underneath the address bar. This is done by:

  1. Click the Settings button (three horizontal lines in the top right)
  2. Click Customize at the bottom
  3. Click Show hide toolbars (at the bottom) and then select Bookmarks Bar

Hope this helps

more options

You can organize your bookmarks in folders to avoid scrolling down.

See also:

Add code to the userChrome.css file below the default @namespace line.


@namespace url("https://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

#BMB_viewBookmarksSidebar,
#BMB_bookmarksShowAllTop, #BMB_bookmarksShowAll,
#BMB_bookmarkThisPage,
#BMB_subscribeToPageMenuitem,
#BMB_subscribeToPageMenupopup, #BMB_subscribeToPageMenupopup+menuseparator,
#BMB_bookmarksToolbar, #BMB_bookmarksToolbar+menuseparator,
#BMB_unsortedBookmarks {
 display:none!important;
}

#menu_bookmarkThisPage,
#subscribeToPageMenuitem,
#subscribeToPageMenupopup,
#bookmarksShowAll, #organizeBookmarksSeparator,
#bookmarksToolbarFolderMenu,
#bookmarksToolbarFolderMenu+menuseparator,
#bookmarksMenuPopup menuseparator[builder="end"],
#menu_unsortedBookmarks {
 display:none!important;
}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.