为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

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

详细了解

Shouldn't the "Recently Bookmarked" list be optional?

more options

Firefox version 57 Library includes a Library feature, which automatically collects and lists 40-some recent bookmarks. It is unaffected by deleting history. In Customize Options you can drag the Library icon out of the toolbar and replace it with the Bookmarks icon, but just go to Menu > Library and there it is again. It's redundant anyway, if I want recent bookmarks I can find them at the bottom of the regular old Bookmarks list till I sort them. Recently Bookmarked is bad for privacy if you share the computer. All your medical and financial sites are there...

[Profanity removed by moderator. Please read Mozilla Support rules and guidelines, thanks.]

Firefox version 57 Library includes a Library feature, which automatically collects and lists 40-some recent bookmarks. It is unaffected by deleting history. In Customize Options you can drag the Library icon out of the toolbar and replace it with the Bookmarks icon, but just go to Menu > Library and there it is again. It's redundant anyway, if I want recent bookmarks I can find them at the bottom of the regular old Bookmarks list till I sort them. Recently Bookmarked is bad for privacy if you share the computer. All your medical and financial sites are there... ''[Profanity removed by moderator. Please read [[Forum rules and guidelines]], thanks.]''

由Chris Ilias于修改

所有回复 (2)

more options

LOL. ya ...... I do not know what happens if try and right click and delete that. The menu comes up and it is a option but since I use that once in a while...

That is why your suppose to make a different profile for each user so they each ++ have own space...own bookmarks..... Been years since I did that I think you can password protect that. As for going into the guts and looking ya is possible... https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles

If wait long enough some one might know if there is a about: link to the right place to disable that if it has it's own line. Seems like a waste to give it a line so...but anything is possible.

Please let us know if this solved your issue or if need further assistance.

more options

I think the currently available workaround is to blank that area of the Library menu, Bookmarks submenu, using a custom style rule.

The first rule hides the Recently Bookmarked heading and list. The second hides any bookmarks listed under Recent Highlights -- you may not care about those, but I added it just in case. The attached screenshot is from Firefox 59 (test version available as "Nightly") but I think it should also work in Firefox 57.

/* Library Button > Bookmarks: Hide "Recently Bookmarked" */
#PanelUI-bookmarks #panelMenu_recentBookmarks, 
#PanelUI-bookmarks #panelMenu_bookmarksMenu {
  display: none !important;
}

/* Library button: Hide Bookmarks in "Recent Highlights" */
#appMenu-library-recentHighlights [type="highlight-bookmark"] {
  display: none !important;
}

Custom style rules can be applied to Firefox's user interface using a userChrome.css file. If you haven't created one before, it's a 5-10 minute project to get it all set up. This article should help: https://www.userchrome.org/how-create-userchrome-css.html