如何隐藏 Firefox 100.0 中的本机选项卡;现有的答案已经过时了?

如何隐藏 Firefox 100.0 中的本机选项卡;现有的答案已经过时了?

对此有多个疑问(其中,这似乎是父母) 但它们都已经过时了。

我设置toolkit.legacyUserProfileCustomizations.stylesheetsTrue并在 chrome/userChrome.css 中尝试了此文本

/* hides the native tabs */
#TabsToolbar {
visibility: collapse;
}

在 Firefox 100.0 中,这似乎不起作用。有人找到解决方案了吗?

答案1

看来他们已经更改了 ID 的名称。现在是TabsToolbar-customization-target

这应该适用于userChrome.css

#TabsToolbar-customization-target {
    visibility: collapse;
}

相关内容