首页 > 其他分享 >Firefox Tree Style Tab extension & hide native tabs

Firefox Tree Style Tab extension & hide native tabs

时间:2023-03-30 23:59:09浏览次数:51  
标签:Style hide extension tabs Tree 地址栏 native

  1. 地址栏空白处右键Customize Toolbar...,勾选Title bar
  2. 安装Tree Style Tab扩展
  3. 在地址栏输入about:config搜索toolkit.legacyUserProfileCustomizations.stylesheets改为true
  4. 在地址栏输入about:support搜索Profile DirectoryOpen Directory打开路径
  5. 新建chrome文件夹,文件夹下新建userChrome.css,文本输入以下内容保存
/* hides the title bar */
#titlebar {
  visibility: collapse;
}

/* hides the sidebar */
#sidebar-header {
  visibility: collapse !important;
}
  1. 重启Firefox

https://superuser.com/questions/1424478/can-i-hide-native-tabs-at-the-top-of-firefox

标签:Style,hide,extension,tabs,Tree,地址栏,native
From: https://www.cnblogs.com/WWIandMC/p/17274808.html

相关文章