转自:https://medium.com/@Aenon/firefox-hide-native-tabs-and-titlebar-f0b00bdbb88b
因为我使用树状插件管理tab,所以上面的标签栏就有点多余了。

打开配置
地址栏:about:config 搜索toolkit.legacyUserProfileCustomizations.stylesheets ,把它改为true
进入配置-more troubleshooting information

找到profile forder

在这个目录中创建文件夹chrome

在chrome文件夹中创建文件userChrome.css,内容:
/* hides the native tabs */
#TabsToolbar {
visibility: collapse;
}重启firefox,tab栏已经没了


