搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Can access to browser settings and options be restricted?

  • 2 回覆
  • 4 有這個問題
  • 4 次檢視
  • 最近回覆由 cor-el

more options

Is it possible to deny access to firefox settings and options? I don't want my children adding or disabling plugins, changing their home page, clearing browser history, etc. I'm quite happy with the web filtering options to block content and downloads but don't want changes to be made to the browser itself without my permission.

Is it possible to deny access to firefox settings and options? I don't want my children adding or disabling plugins, changing their home page, clearing browser history, etc. I'm quite happy with the web filtering options to block content and downloads but don't want changes to be made to the browser itself without my permission.

所有回覆 (2)

more options

This is not yet a built in Firefox feature, but it can be done by using the Public Fox add-on to set a password to these settings.

more options

Note that any restriction added by an extension can easily be bypassed by starting Firefox in Safe Mode (i.e. holding down the Shift key when you start Firefox). So this will only work with very young children that do not know their way around with Firefox.

It is possible to lock the home page with a mozilla.cfg file to prevent changing this page.

See:

Other settings that are saved as a pref can be locked as well, but you can't prevent them from clearing the history or disabling extensions and plugins.

You could hide the about:addons page with code in userContent.css.

@-moz-document url-prefix(about:addons) { #addons-page { display:none !important; } }

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.


See also:

由 cor-el 於 修改