搜索 | 用户支持

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

Learn More

Hide Show All / Unsorted Bookmarks on Menu

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

more options

Is there a way to remove the "Show All Bookmarks" and "Unsorted Bookmarks" links on the Bookmarks menu, or at the very least, move them so they're not the top and bottom? It was much easier in my opinion if you could just have the very top of the bookmarks menu be "Add Bookmark".

Is there a way to remove the "Show All Bookmarks" and "Unsorted Bookmarks" links on the Bookmarks menu, or at the very least, move them so they're not the top and bottom? It was much easier in my opinion if you could just have the very top of the bookmarks menu be "Add Bookmark".

所有回复 (1)

more options

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

You can use the ChromEdit Plus or Stylish extension to have easier access to the customization files.


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

#bookmarksShowAll, #organizeBookmarksSeparator,
#BMB_bookmarksShowAll, #BMB_bookmarksShowAll+menuseparator,
#appmenu_showAllBookmarks, #appmenu_showAllBookmarks+menuseparator,
#appmenu_bookmarksPopup menuseparator[builder="end"],
#appmenu_unsortedBookmarks,
#bookmarksMenuPopup menuseparator[builder="end"],
#menu_unsortedBookmarks,
#BMB_bookmarksPopup menuseparator[builder="end"],
#BMB_unsortedBookmarks { display:none!important; }

由cor-el于修改