Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

본 사이트는 여러분의 사용자 경험을 개선하기 위해 유지 보수를 진행하는 동안 기능이 제한됩니다. 도움말로 문제가 해결되지 않고 질문을 하고 싶다면 Twitter의 @FirefoxSupport 및 Reddit의 /r/firefox 채널을 활용하세요.

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.