Mozilla 도움말 검색

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

Learn More

UserChrome.css Hide Bookmarks Toolbar Context Menus

  • 2 답장
  • 1 이 문제를 만남
  • 187 보기
  • 최종 답변자: hijacks

more options

Does someone know how the css code is for remove all Bookmarks Toolbar context menus. I added two images where you can see which context menus. Sorry for asking this question but i've searched two days and found nothing about.

I use Firex 83

Thank you.

Does someone know how the css code is for remove all Bookmarks Toolbar context menus. I added two images where you can see which context menus. Sorry for asking this question but i've searched two days and found nothing about. I use Firex 83 Thank you.
첨부된 스크린샷

선택된 해결법

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library).

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

#placesContext { display: none !important; }

문맥에 따라 이 답변을 읽어주세요 👍 1

모든 댓글 (2)

more options

선택된 해결법

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library).

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

#placesContext { display: none !important; }

more options

cor-el said

I don't think that you can hide the right-click context menu only for the Bookmarks Toolbar. If you hide this context menu then it is hidden for all cases where this context menu is used and this includes the bookmarks sidebar and the Bookmarks Manager (Library). 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 */

#placesContext { display: none !important; }


Many thanks. That was exactly what i was looking for and didn't found after search for days.