Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Mulongo oyo etiyamaki na archive. Tuna motuna mosusu soki osengeli na lisalisi

Hiding Restart with Add-ons disabled using custom userChrome.css

  • 3 biyano
  • 1 eza na nkokoso oyo
  • 10 views
  • Eyano yasuka ya cor-el

more options

Need to remove the Help > Restart with Add-ons disabled option, as we are deploying FireFox to several users across the enterprise and do not what them to have the ability to disable packaged addons, Have tried adding the below to userChrome.css but no joy. Any help appreciated, Thanks.

menuitem[label="Restart with Add-ons Disabled"] {display: none !important;} menuitem[label="Restart with Add-ons Disabled..."] {display: none !important;} menuitem[label="Restart with Add-ons Disabled…"] {display: none !important;}

Need to remove the Help > Restart with Add-ons disabled option, as we are deploying FireFox to several users across the enterprise and do not what them to have the ability to disable packaged addons, Have tried adding the below to userChrome.css but no joy. Any help appreciated, Thanks. menuitem[label="Restart with Add-ons Disabled"] {display: none !important;} menuitem[label="Restart with Add-ons Disabled..."] {display: none !important;} menuitem[label="Restart with Add-ons Disabled…"] {display: none !important;}

Solution eye eponami

Note that they will still be able to start Firefox in Safe mode by holding down the Shift key when starting Firefox.

Add this code to the userChrome.css file below the default @namespace line.


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

#helpSafeMode { display:none!important; }

#appmenu_feedbackPage+menuseparator, #appmenu_safeMode { display:none!important; }
Tanga eyano oyo ndenge esengeli 👍 1

All Replies (3)

more options

Solution eye oponami

Note that they will still be able to start Firefox in Safe mode by holding down the Shift key when starting Firefox.

Add this code to the userChrome.css file below the default @namespace line.


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

#helpSafeMode { display:none!important; }

#appmenu_feedbackPage+menuseparator, #appmenu_safeMode { display:none!important; }
more options

Thanks for response, used the code below which worked for us:

menuitem#helpSafeMode {

   display: none !important;

}

more options

You're welcome.

Note that you will still have that menu item in the Help menu in the Firefox menu button (menu bar hidden) if you do not include the second (#appmenu) code.