Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
angelbruni committed Feb 5, 2025
1 parent 2fa0122 commit daa2208
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Profile Folder/chrome/JS/Geckium_toolbar.uc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// ==UserScript==
// @name Geckium - Toolbar Adjustments
// @author AngelBruni
// @loadorder 4
// ==/UserScript==

UC_API.Runtime.startupFinished().then(() => {
// Maybe temporary fix to the forced vertical spacer...?? Why did you do this Mozilla...
let forcedSpacer = document.querySelector(`#vertical-spacer[removable="false"]`);
if (forcedSpacer) {
forcedSpacer.setAttribute("removable", true);
CustomizableUI.removeWidgetFromArea("vertical-spacer");
}
});

0 comments on commit daa2208

Please sign in to comment.