Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Pretraži podršku

Izbjegni prevare podrške. Nikad te nećemo tražiti da nas nazoveš, da nam pošalješ telefonski broj ili da podijeliš osobne podatke. Prijavi sumnjive radnje pomoću opcije „Prijavi zlouporabu”.

Learn More

how can I turn off the "recently bookmarked" feature

more options

how can I turn off the "recently bookmarked" feature?

how can I turn off the "recently bookmarked" feature?

Svi odgovori (7)

more options

I would like to be able to disable this too.

There used to be a toggle in about:config called:

    browser.bookmarks.showRecentlyBookmarked 

that you could change the value of to false.

Can I see it now in my Firefox 57.0? No. Perhaps it is now done a different way?

more options

You see these section if you use the Library (bookshelf) button on the Navigation Toolbar.

You can add the "Bookmarks Menu" button that shows bookmarks in a drop-down list to the Navigation Toolbar.

  • click the bookshelf 57 library icon icon on the Navigation Toolbar or alternatively use the Library menu in the "3-bar" Firefox menu button New Fx Menu drop-down list
  • click Bookmarks
  • click "Bookmarking Tools", then click "Add Bookmarks Menu to Toolbar"
The Bookmark Menu button Bookmark Menu icon (star on tray) should appear on the Navigation Toolbar.

You can alternatively drag the Bookmarks Menu and the History button from the Customize palette to the Navigation Toolbar

See also "How do I add the Bookmarks Menu button to the toolbar?":

Izmjenjeno od cor-el

more options

cor-el said

You see these section if you use the Library (bookshelf) button on the Navigation Toolbar.

Adding the "Show your bookmarks" icon to the main toolbar is a useful thing to know, thank you.

Unfortunately, it does not actually answer the question posed by the original poster, or myself.

Adding the Bookmark Menu icon (star on tray) button does nothing to prevent the "Recently Bookmarked" list from displaying if you click the 57 library icon button and select Bookmarks.

That "browser.bookmarks.showRecentlyBookmarked" toggle mentioned in my last post is no longer listed, so not sure how to go about disabling that function now?

Incidently, the link that you added...

See also "How do I add the Bookmarks Menu button to the toolbar?":

brings up a "Page Not Found" error, so needs updating.

more options

There is a #firefox missing in the link, sorry about this.

Such a list is created by a query. A bookmark with the location set to this place query shows a similar list.

  • place:folder=BOOKMARKS_MENU&folder=UNFILED_BOOKMARKS&folder=TOOLBAR&queryType=1&sort=12&maxResults=10&excludeQueries=1
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

more options

Thanks Guys!

I added the code to my existing userChrome.css and it is working fine under Firefox 57.0. My userChrome.css file in full now does:

  1. Rounded tab customizations
  2. Colored folders for bookmark sidebar, toolbar, menu button
  3. Bookmark history customizations

I was going to paste my complete userChrome.css file here, but it would exceed the character limit for a single post. Here are just the last two sections which are for bookmarks. The rounded tab customizations that I use need to be altered depending on whether you are using a light, dark or medium theme anyway. See the snapshot of it in action (with Mermaid v2.1 theme by Arrowmaster). I blanked out one folder name as it was TMI!

/* Colored folders for bookmark sidebar, toolbar, menu button */
/* ========================================================== */

  /* Standard folder */
#bookmarks-view treechildren::-moz-tree-image(container),
#PlacesToolbarItems toolbarbutton[container="true"] .toolbarbutton-icon,
#PlacesToolbarItems menu[container="true"] .menu-iconic-left,
#BMB_bookmarksPopup menu[container="true"] .menu-iconic-icon {
  fill: #e8bb00 !important; /* slightly muted gold */
}
  /* Live Bookmark (RSS Feed) */
#bookmarks-view treechildren::-moz-tree-image(container, livemark),
#PlacesToolbarItems toolbarbutton[container="true"][livemark="true"] .toolbarbutton-icon,
#PlacesToolbarItems menu[container="true"][livemark="true"] .menu-iconic-left,
#BMB_bookmarksPopup menu[container="true"][livemark="true"] .menu-iconic-icon {
  fill: orange !important;
}
  /* Smart bookmark folder */
#bookmarks-view treechildren::-moz-tree-image(container, query),
#PlacesToolbarItems toolbarbutton[container="true"][query="true"] .toolbarbutton-icon,
#PlacesToolbarItems menu[container="true"][query="true"] .menu-iconic-left,
#BMB_bookmarksPopup menu[container="true"][query="true"] .menu-iconic-icon {
  fill: #69c !important; /* similar to blue smart folder color */
}
  /* These "containers" are SVG in the sidebar, not yet on the menu */
#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksMenu) {
  fill: olive !important;
}
#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_BookmarksToolbar) {
  fill: olive !important;
}
#bookmarks-view treechildren::-moz-tree-image(container, OrganizerQuery_UnfiledBookmarks) {
  fill: olive !important;
}


/* Bookmark history customizations */
/* =============================== */

/* 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;
}


The rounded tab customizations that I use can be found here: https://github.com/wilfredwee/photon-australis

Izmjenjeno od RichardInEngland

more options

@jekarayan Could you mark this as solved now, if you have used the fix?

Thanks... Richard.