Introduce gnomeTheme.hideUnifiedExtensions

Closes  #546
This commit is contained in:
Rafael Mardojai CM 2023-01-27 13:27:18 -05:00
parent f5cf31a42e
commit 78fb30118a
No known key found for this signature in database
GPG Key ID: 2B2DAB2A58566C84
2 changed files with 11 additions and 0 deletions

View File

@ -208,6 +208,10 @@ Optional features can be enabled by creating new `boolean` preferences in `about
Hide redundant WebRTC indicator since GNOME provides their own privacy icons in the top right. Hide redundant WebRTC indicator since GNOME provides their own privacy icons in the top right.
- **Hide unified extensions button** `gnomeTheme.hideUnifiedExtensions`
Hide unified extensions button from the navbar, you can also use `extensions.unifiedExtensions.enabled` instead, which is only going to work till Firefox 111.
- **Drag window from headerbar buttons** `gnomeTheme.dragWindowHeaderbarButtons` - **Drag window from headerbar buttons** `gnomeTheme.dragWindowHeaderbarButtons`
Allow dragging the window from headerbar buttons. Allow dragging the window from headerbar buttons.

View File

@ -293,3 +293,10 @@ button.close {
min-height: 24px !important; min-height: 24px !important;
width: 24px !important; width: 24px !important;
} }
/* OPTIONAL: Hide unified-extensions-button */
@supports -moz-bool-pref("gnomeTheme.hideUnifiedExtensions") {
#unified-extensions-button {
display: none;
}
}