Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

I am using Firefox for a Kiosk application. Can I disable the context menu and zooming?

  • 2 ответа
  • 2 имеют эту проблему
  • 383 просмотра
  • Последний ответ от cor-el

more options

I am using Firefox for a Kiosk application on a large touch screen monitor. I would like to prevent users from interacting with the browser interface. Is there a way to do this? Disabling the context menu and zooming for touch gestures would prevent users from getting into a state where they are unable to use the application.

I am using Firefox for a Kiosk application on a large touch screen monitor. I would like to prevent users from interacting with the browser interface. Is there a way to do this? Disabling the context menu and zooming for touch gestures would prevent users from getting into a state where they are unable to use the application.

Выбранное решение

hi TrevorTubbs, you can disable zooming in the browser with the method described at http://kb.mozillazine.org/Locking_preferences & locking those preferences:

lockPref("toolkit.zoomManager.zoomValues"; "1");
lockPref("zoom.maxPercent"; 100);
lockPref("zoom.minPercent"; 100);

i'm not sure about disabling the context menu though...

Прочитайте этот ответ в контексте 👍 1

Все ответы (2)

more options

Выбранное решение

hi TrevorTubbs, you can disable zooming in the browser with the method described at http://kb.mozillazine.org/Locking_preferences & locking those preferences:

lockPref("toolkit.zoomManager.zoomValues"; "1");
lockPref("zoom.maxPercent"; 100);
lockPref("zoom.minPercent"; 100);

i'm not sure about disabling the context menu though...

more options

You can lock browser.gesture prefs to an empty string to prevent them from working.

Note that the mozilla.cfg file needs to start with a comment line (\\)

//
lockPref("toolkit.zoomManager.zoomValues", "1");
lockPref("zoom.maxPercent", 100);
lockPref("zoom.minPercent", 100);

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 also: