Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Шукати в статтях підтримки

Остерігайтеся нападів зловмисників. Mozilla ніколи не просить вас зателефонувати, надіслати номер телефону у повідомленні або поділитися з кимось особистими даними. Будь ласка, повідомте про підозрілі дії за допомогою меню “Повідомити про зловживання”

Learn More

Ця тема перенесена в архів. Якщо вам потрібна допомога, запитайте.

How to gray out Tools > Options in menu bar

  • 1 відповідь
  • 1 має цю проблему
  • 3 перегляди
  • Остання відповідь від cor-el

more options

I've installed firefox v.35.0.1 on windows 7 64 bit with administrator user and I want to close firefox settings by grayout or disable "Options" menu in menu bar > Tools > Options for all user exept "Administrator" Pls guide me Thanks

I've installed firefox v.35.0.1 on windows 7 64 bit with administrator user and I want to close firefox settings by grayout or disable "Options" menu in menu bar > Tools > Options for all user exept "Administrator" Pls guide me Thanks

Усі відповіді (1)

more options

That would help against opening the about:preferences page in a tab like is possible in current Firefox versions. If you only want to prevent users from changing specific settings then you can consider to lock involved prefs.


You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

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

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

See: