Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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

  • 5 个回答
  • 3 人有此问题
  • 7 次查看
  • 最后回复者为 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

所有回复 (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: