Tree Style Tab 的评价
Tree Style Tab 作者: Piro (piro_or)
Firefox 用户 12145238 的评价
评分 5 / 5
来自 Firefox 用户 12145238,7 年前This addon is literally the only reason I use firefox.
Works perfectly. Thank you for all the support and upgrades.
Just needs some magic after upgrade to FF 57 to hide the native tabs on top of the screen (which is not the developer's fault) - see below and in other reviews as well, you can find additional information on how to do this
Also see the wiki page for this addon - there are examples for styling the tabs:
https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules
To hide FireFox tab bar and Side Panel title:
1) Locate your firefox profile folder (you can find it in the troubleshooting section in the Settings)
2) Locate "chrome" folder there - create it if it isn't there
3) If there are no files userChrome.css and userContent.css in "chrome" folder - create them
4) At the top of userChrome.css file add:
/* add this line if it is not there */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* to hide the native tabs */
#TabsToolbar { visibility: collapse; }
/* to hide the sidebar header */
#sidebar-header { visibility: collapse; }
==================================================================================================
Чтобы скрыть вкладки вверху браузера, см инструкцию ниже, а также прочие отзывы. Также см вики для этого аддона - там всякие примеры, как стилизовать вкладки: https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules
1) Находим папку профиля firefox - Настройки - Справка - Информация для решения проблем - Папка профиля - Открыть папку
2) Если в ней нет папки chrome - создаем
3) Создаем файлы userChrome.css и userContent.css в папке chrome, если их там нет
4) В начале файла userChrome.css добавляем:
/* добавить эту строку, если ее там нет */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* чтобы спрятать вкладки сверху браузера */
#TabsToolbar { visibility: collapse; }
/* чтобы спрятать заголовок у сайдбара */
#sidebar-header { visibility: collapse; }
Works perfectly. Thank you for all the support and upgrades.
Just needs some magic after upgrade to FF 57 to hide the native tabs on top of the screen (which is not the developer's fault) - see below and in other reviews as well, you can find additional information on how to do this
Also see the wiki page for this addon - there are examples for styling the tabs:
https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules
To hide FireFox tab bar and Side Panel title:
1) Locate your firefox profile folder (you can find it in the troubleshooting section in the Settings)
2) Locate "chrome" folder there - create it if it isn't there
3) If there are no files userChrome.css and userContent.css in "chrome" folder - create them
4) At the top of userChrome.css file add:
/* add this line if it is not there */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* to hide the native tabs */
#TabsToolbar { visibility: collapse; }
/* to hide the sidebar header */
#sidebar-header { visibility: collapse; }
==================================================================================================
Чтобы скрыть вкладки вверху браузера, см инструкцию ниже, а также прочие отзывы. Также см вики для этого аддона - там всякие примеры, как стилизовать вкладки: https://github.com/piroor/treestyletab/wiki/Code-snippets-for-custom-style-rules
1) Находим папку профиля firefox - Настройки - Справка - Информация для решения проблем - Папка профиля - Открыть папку
2) Если в ней нет папки chrome - создаем
3) Создаем файлы userChrome.css и userContent.css в папке chrome, если их там нет
4) В начале файла userChrome.css добавляем:
/* добавить эту строку, если ее там нет */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* чтобы спрятать вкладки сверху браузера */
#TabsToolbar { visibility: collapse; }
/* чтобы спрятать заголовок у сайдбара */
#sidebar-header { visibility: collapse; }