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

搜索 | 用户支持

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

详细了解

Disable F11

  • 5 个回答
  • 1 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

Hello,

is it possible to disable F11 key for enabling disabling full screen or set it to another combination like Alt + F11? My problem is, that i am using citrix html 5 client in firefox. Within the citrix session there is a terminal application where F11 is a special key which is needed. But unfortunatly whenever i use it also Firefox switches the full screen and then the citrix client adjusts the resolution which durates a few seconds. And thats really annoying. Using another key in the terminal application is not possible. The APplication uses F1 - F24 by double using the F1-F12 Keys.

regards

Hello, is it possible to disable F11 key for enabling disabling full screen or set it to another combination like Alt + F11? My problem is, that i am using citrix html 5 client in firefox. Within the citrix session there is a terminal application where F11 is a special key which is needed. But unfortunatly whenever i use it also Firefox switches the full screen and then the citrix client adjusts the resolution which durates a few seconds. And thats really annoying. Using another key in the terminal application is not possible. The APplication uses F1 - F24 by double using the F1-F12 Keys. regards

被采纳的解决方案

You can try to paste this code in the Browser Console to see if that helps for you. It should disable F11 in the current window. You need th enable the command line in the Browser Console.

This code works per window for the most recent used browser window, so you can consider to open a new window for this feature.


doc = Services.wm.getMostRecentWindow("navigator:browser").window.document;
if(E=doc.getElementById('key_fullScreen')){E.removeAttribute('keycode');E.removeAttribute('command');}
定位到答案原位置 👍 1

所有回复 (5)

more options

Keyboard assignments are based on the O/S and only the O/S can change those settings if permitted.

more options

选择的解决方案

You can try to paste this code in the Browser Console to see if that helps for you. It should disable F11 in the current window. You need th enable the command line in the Browser Console.

This code works per window for the most recent used browser window, so you can consider to open a new window for this feature.


doc = Services.wm.getMostRecentWindow("navigator:browser").window.document;
if(E=doc.getElementById('key_fullScreen')){E.removeAttribute('keycode');E.removeAttribute('command');}
more options

WestEnd said

Keyboard assignments are based on the O/S and only the O/S can change those settings if permitted.

Unfortunatly no. This key assignment is not driven by os. It is driven by firefox itself. I used Vivaldi on linux to test this. In Vivaldi you can disable full screen which also defaults to F11. There i have no more problem in my use case.

more options

cor-el said

You can try to paste this code in the Browser Console to see if that helps for you. It should disable F11 in the current window. You need th enable the command line in the Browser Console. This code works per window for the most recent used browser window, so you can consider to open a new window for this feature.
doc = Services.wm.getMostRecentWindow("navigator:browser").window.document;
if(E=doc.getElementById('key_fullScreen')){E.removeAttribute('keycode');E.removeAttribute('command');}

Thank you cor-el, your tip works like expected. I tested it in Firefox 66.0.3.

It is a bit clumsy as you have to repeat that every time, of course. But thank you anyway!

more options

The Browser Console preserves its command line history, so you can us the cursor Up key to recall previously entered code (i.e. it shouldn't be necessary to paste the code each time you need it).