Skip to content

Instantly share code, notes, and snippets.

@nollinvoyd
nollinvoyd / aboutaddons-button.uc.js
Created January 24, 2025 18:12
Firefox custom toolbar button
// 'about:'-Button script for Firefox 89+ by Aris
//
// Need a different 'about' page button?
// - replace 'about:config' url with a different 'about:' url
// - replace button id
// - replace icon / icon url / icon color
(function() {
try {
@nollinvoyd
nollinvoyd / RestartFirefoxButton_Movable.uc.js
Created October 3, 2022 18:27 — forked from Sporif/RestartFirefoxButton_Movable.uc.js
Restart Button for Firefox. An updated version of https://github.com/Endor8/userChrome.js/tree/master/restartfirefoxbutton_movable. Middle click also empties the script cache.
(function() {
if (location != 'chrome://browser/content/browser.xul' && location != 'chrome://browser/content/browser.xhtml')
return;
try {
CustomizableUI.createWidget({
id: 'restart-button',
type: 'custom',
defaultArea: CustomizableUI.AREA_NAVBAR,
onBuild: function(aDocument) {