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

Q1. How can i block search engine completely on Firefox 45.3 ESR? Q2. How to avoid "+" button which opens new tab?

  • 5 replies
  • 3 have this problem
  • 7 views
  • Last reply by cor-el

more options

Q1. How can i block search engine completely on Firefox 45.3 ESR? I don't want to see any search engine facility on Firefox 45.3 esr version. I don't want to allow my users to browse the web

Q2. How to avoid "+" button which opens new tab? I don't want my users to open new tab, it is better if can i remove plus sign on top of the address bar

Please help me with these two options

Q1. How can i block search engine completely on Firefox 45.3 ESR? I don't want to see any search engine facility on Firefox 45.3 esr version. I don't want to allow my users to browse the web Q2. How to avoid "+" button which opens new tab? I don't want my users to open new tab, it is better if can i remove plus sign on top of the address bar Please help me with these two options

All Replies (5)

more options

Note the 45.9.0 is the last release on the Firefox 45 ESR branch and this branch is no longer supported. Current is Firefox 52.2.0 ESR

You can drag the plus sign to the Customize palette or -> Remove from Toolbar, but that would still allow experienced users to restore this button or use keyboard shortcuts or menu items to open a new tab. You can do the same with the search bar (drag to the Customize palette).

See also:

You may want to look at a kiosk extension.

more options

Thanks cor-el, that looks to be a great solution for hiding the "plus" button and the search bar on the top (tool bar line). We are using "Autohotkey" script to restrict the users from using keyboard shortcuts to open new tab or new window.

But


1. Is there any way to hide the search engine facility that displays in the middle of the Firefox page?

2. Is there any group policy to apply for my networked users to restrict plus button and search engines.

Kindly help me on this.

Thanks

more options

Hiding the Search Bar is quite easy. https://support.mozilla.org/en-US/kb/customize-firefox-controls-buttons-and-toolbars

Just move it to Additional Tool and Features while in the Customize mode.

more options

Thanks the-edmeister & cor-el for providing solution to hide the search bar and "Plus" button.

Can you please help me in which file / folder, these settings are being saved, i want to implement this for my networked/intranet users.

Thanks, Rami

more options

Firefox stores most the the toolbar customization in JSON format in the browser.uiCustomization.state pref that you can see on the about:config page.


You can use the mozilla.cfg file in the Firefox program folder to set or lock preferences and run privileged JavaScript code.

The mozilla.cfg file needs to be in the main Firefox program folder.

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();	// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

This requires a local-settings.js file in the "defaults/pref" folder where the channel-prefs.js file is located that specifies to use mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

The mozilla.cfg file and possibly local-settings.js need to start with a comment line (//).

See Configuration:

See also: