Этот сайт имеет ограниченную функциональность, пока мы проводим техническое обслуживание для улучшения его работы. Если какая-либо статья не решила вашу проблему и вы хотите задать вопрос, наше сообщество поддержки ждёт вас: @FirefoxSupport в Твиттере и /r/firefox на Reddit.

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Подробнее

Why does the Mobile bookmarks toggle in About:config revert back to true rather than remember its setting?

  • 1 ответ
  • 1 имеет эту проблему
  • 2 просмотра
  • Последний ответ от cor-el

more options

I do not want to see this crap in my bookmarks bar. The toggle lets me change it from true to false and when I change it then either close and reopen or hit Sync now it reverts back to true and never hides the folder.

This and "other bookmarks" need to be removable!

I do not want to see this crap in my bookmarks bar. The toggle lets me change it from true to false and when I change it then either close and reopen or hit Sync now it reverts back to true and never hides the folder. This and "other bookmarks" need to be removable!

Все ответы (1)

more options

You can only hide this section permanently via that pref when you do not use Sync. A possible workaround is to use mozilla.cfg to lock this pref via a lockPref("browser.bookmarks.showMobileBookmarks", false) call or use code in userChrome.css to hide this section.

The latter is not possible in the sidebar and on Mac also not in the Bookmarks menu (the menu bar is under control of the Mac OS). I don't know how it works if you exclude the bookmarks from Sync.


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

#BMB_mobileBookmarks, #menu_mobileBookmarks {display:none!important;}
#BMB_mobileBookmarks, #menu_mobileBookmarks + menuseparator {display:none!important;}