$(document).keydown(function(e) { if (e.keyCode === 122 || e.keyCode === 121 || e.keyCode === 112) { // F11/F1/F10 if (!require('@electron/remote').getCurrentWindow().fullScreen && require('@electron/remote').getCurrentWindow().fullScreenable) { require('@electron/remote').getCurrentWindow().setFullScreen(true); } else { require('@electron/remote').getCurrentWindow().setFullScreen(false); } } })