Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

搜索 | 用户支持

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

详细了解

I need to disable the "Help" option in the main menu.

  • 5 个回答
  • 1 人有此问题
  • 9 次查看
  • 最后回复者为 NeonLeon

more options

I am running Public Fox 1.09 as an add on in our school district because it enables me to keep students from by passing our proxy. They discovered that all they have to go to "Help" and "Restart with add-ons Disabled". They can then select "No Proxy" and get anywhere they desire. I need to disable the "Help" option in the main menu.

I am running Public Fox 1.09 as an add on in our school district because it enables me to keep students from by passing our proxy. They discovered that all they have to go to "Help" and "Restart with add-ons Disabled". They can then select "No Proxy" and get anywhere they desire. I need to disable the "Help" option in the main menu.

由NeonLeon于修改

被采纳的解决方案

hello NeonLeon, though it would be possible in principle to hide certain menu entries, the next thing your students will discover is that you can also get into safemode by pressing the shift key while firefox is launching, so this is no durable solution...

you could use a mozilla.cfg file in the firefox program folder (where students hopefully will have no write-access) to lock certain preferences like your proxy configuration, for more information see: http://kb.mozillazine.org/Locking_preferences

定位到答案原位置 👍 2

所有回复 (5)

more options

选择的解决方案

hello NeonLeon, though it would be possible in principle to hide certain menu entries, the next thing your students will discover is that you can also get into safemode by pressing the shift key while firefox is launching, so this is no durable solution...

you could use a mozilla.cfg file in the firefox program folder (where students hopefully will have no write-access) to lock certain preferences like your proxy configuration, for more information see: http://kb.mozillazine.org/Locking_preferences

more options

Hi NeonLeon, also another method is to use code to UserChrome.css

/* Remove Menu Items */
#helpMenu {display: none !important;}

see also: Chrome element names and IDs

EDIT: works when menu bar is visible !


thank you

由ideato于修改

more options

If that's all you need Public Fox for, then you're better off locking preferences. Firefox can be started in safe mode either by holding down the Shift key or launching firefox.exe -safe-mode

For example, if your configuration is Manual proxy

//
lockPref("network.proxy.type", 1); // lock proxy type to Manual
lockPref("network.proxy.http", "127.0.0.1"); // lock proxy address
lockPref("network.proxy.http_port", 8080); // lock proxy port

Also make sure the file permissions don't allow the user account(s) in question to modify or delete them.

Notes

  • By default, Notepad will append the .txt extension to saved files. To avoid this, wrap the filename in quotes when saving, e.g. entering "mozilla.cfg" in the save dialog box will save the file with that exact name.
  • In Windows Vista and later, it's not possible to directly create or modify files under the Program Files folder. To save files there, you can right-click Notepad (or your text editor of choice) and choose Run as Administrator.
more options

yeeees, i agree with madperson and Gingerbread_Man because if you choose to use the code to UserChrome.css it is easily bypass by reverse menu bar to firefox button (orange button) then the "Help" is present again !

NeonLeon don't mess with the code, try madperson and Gingerbread_Man solution .


thanks again

由ideato于修改

more options

Thank you all for the great suggestions!