通過將視窗設定為全屏來使用遠端
const { remote } = require("electron"); // <- The Node.js require() function is
// added to JavaScript by electron
function fullscreen(f) { // p = false or true
const currentWindow = remote.getCurrentWindow();
currentWindow.maximize();
}