Windows 10 will reach EOS (end of support) on October 14, 2025. For more information, see this article.

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Disable or erase "Recently Bookmarked"

  • 8 답장
  • 3 이 문제를 만남
  • 4 보기
  • 최종 답변자: cor-el

more options

I want to erase or preferably disable the "Recently Bookmarked" functionality when you go to the bookmarks part of the library. How do I do this? I don't see anything in the Support, despite doing searches using several different search terms. It is a strange thing to have without being able to erase it or disable it, especially since bookmarks saved during "private window" searches show up there.

I want to erase or preferably disable the "Recently Bookmarked" functionality when you go to the bookmarks part of the library. How do I do this? I don't see anything in the Support, despite doing searches using several different search terms. It is a strange thing to have without being able to erase it or disable it, especially since bookmarks saved during "private window" searches show up there.

모든 댓글 (8)

more options

Enter about:config in the URL bar and set browser.library.activity-stream.enabled = false.

more options

The menu is still populated, and I bookmarked another page and it showed up in Recently Bookmarked.

I restarted Firefox and checked Advanced Preferences. It shows that setting as "false" but still allows the Recently Bookmarked to populate and add new bookmarks.

more options

Ah, you want to remove the second list. I don't think it's removable. You can only remove the whole Library and add Bookmarks and History instead, by using the ≡ -> Customize menu.

more options

Well, that explains why I can't remove either Recently Bookmarked or the Library itself. I still think it is a weird oversight that it is so hardcoded in a browser that represents itself as a leading privacy guardian. Thanks, Ty.

more options

You cane Right click and delete the icon that shows recently bookmarked, then go to custom settings and add the "star above horizontal parenthesis" icon > show your bookmarks, then drag wherever you want it.

more options

I accidentally deleted "recently bookmarked" from the bookmarks menu, and wish to restore it. How do I go about this?

글쓴이 starramus 수정일시

more options

I just noticed that I have this problem too. Firefox is tracking my most recently bookmarked. I followed the steps for about:config and changed it from true to false so it won't continue tracking but how do I clear the whole list? I found the list by clicking the icon in the upper right with the 3 lines and the slanted line (see screenshot). Then I clicked Bookmarks and it shows Recently Bookmarked. Thanks. Barbara

more options

You can possibly use code in userChrome.css to hide these recent lists,


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


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

/* hide Recently Bookmarked */
 #panelMenu_recentBookmarks,
 #panelMenu_bookmarksMenu {display:none!important;}
 #appMenu-library-recentHighlights [type="highlight-bookmark"] {display:none!important;}

/* hide Recent History */
 #PanelUI-history label[value="Recent History"],
 #appMenu_historyMenu {display:none!important;}

/* hide Recent Highlights */
 #appMenu-libraryView label[value="Recent Highlights"],
 #appMenu-library-recentHighlights {display:none!important;}

/* hide Recently Closed Tabs/Windows */
 #appMenuRecentlyClosedTabs,
 #appMenuRecentlyClosedWindows {display:none!important;}