為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

lock firefox homepage

  • 4 回覆
  • 18 有這個問題
  • 1 次檢視
  • 最近回覆由 ymz372000

more options

With Firefox 3 and older I could lock down the homepage using the instructions on this page:

http://ilias.ca/blog/2005/03/locking-mozilla-firefox-settings/

With Firefox 4 it does not appear to work anymore. Does anyone know how to lock down the homepage with version 4?

Thanks

With Firefox 3 and older I could lock down the homepage using the instructions on this page: http://ilias.ca/blog/2005/03/locking-mozilla-firefox-settings/ With Firefox 4 it does not appear to work anymore. Does anyone know how to lock down the homepage with version 4? Thanks

所有回覆 (4)

more options

Locking prefs should still work in Firefox 4.

more options

lock firefox homepage

With Firefox 3 and older I could lock down the homepage using the instructions on this page:

http://ilias.ca/blog/2005/03/locking-mozilla-firefox-settings/

With Firefox 4 it does not appear to work anymore. Does anyone know how to lock down the homepage with version 4?

Thanks

more options

Use the instruction as written in:

Create a file local-settings.js in the defaults\pref folder with this content:

pref("general.config.filename", "mozilla.cfg").

Add this line if you want to disable the byte-shifting in mozilla.cfg.

pref("general.config.obscure_value", 0);

Place the mozilla.cfg file in the main Firefox program folder.

You can use these functions in mozilla.cfg :

defaultPref();  // set new default value
pref(); // set pref, but allow changes
lockPref();  // lock pref, disallow changes
more options

To lock down homepage in Firefox 5 (tested, Windows XP):

1) In ...\Program Files\Mozilla Firefox\defaults\pref\ (folder) using Notepad create file local-settings.js containing following code lines:

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

Without the last line (general.obscure_value override) it won't work.

2) In ...\Program Files\Mozilla Firefox\ using Notepad create file mozilla.cfg with following code lines:

//
lockPref("browser.startup.page", 1);
lockPref("browser.startup.homepage", "about:blank");

Without the first code line the homepage setting won't lock. For general.obscure_value >0 mozilla.cfg must be byte-shifted by the specified number of bytes.

Other lock downs can presumably be added, but not tested.

由 cor-el 於 修改