搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

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.