Firefox 左侧标签页可以有关闭按钮吗?

Firefox 左侧标签页可以有关闭按钮吗?

Firefox 中的标签页关闭按钮位于右侧。但在 macOS 中感觉很奇怪,因为所有关闭按钮都在左侧。是否可以将其移到左侧,可能是通过扩展或配置设置?

左侧关闭按钮

答案1

不巧,Firefox UI 可以定制在 中~/Library/Application Support/Firefox/Profiles/<PROFILE_ID>/chrome/userChrome.css。将以下内容添加到该文件(适用于 Firefox v98):

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

.tabbrowser-tab .tab-throbber,
.tabbrowser-tab .tab-icon-image,
.tabbrowser-tab .tab-sharing-icon-overlay,
.tabbrowser-tab .tab-icon-overlay,
.tabbrowser-tab .tab-label-container,
.tabbrowser-tab .tab-icon-sound {
  -moz-box-ordinal-group: 2 !important;
}
.tabbrowser-tab .tab-label-container {
  margin-left: 2px;
}
.tabbrowser-tab .tab-icon-image {
  margin-left: 3px;
}
.tabbrowser-tab .tab-close-button {
  margin-left: -5px !important;
  margin-right: 2.5px !important;
}
.tabbrowser-tab:not([pinned="true"]):hover .tab-close-button {
  display: -moz-box !important;
}
.tabbrowser-tab:not([pinned="true"]):hover .tab-icon-stack,
.tabbrowser-tab:not([pinned="true"]):hover .tab-throbber,
.tab-close-button {
  display: none;
}

还,userChrome.css 在 Firefox 69+ 中默认被禁用,因此转到about:config并设置toolkit.legacyUserProfileCustomizations.stylesheetstrue

谢谢https://support.mozilla.org/en-US/questions/1157451寻找灵感。我也添加了包含此信息的要点

相关内容