Skip to content

Instantly share code, notes, and snippets.

@angeal185
Created June 28, 2019 04:50
Show Gist options
  • Save angeal185/96819805f50da45e4419165cb2392377 to your computer and use it in GitHub Desktop.
Save angeal185/96819805f50da45e4419165cb2392377 to your computer and use it in GitHub Desktop.
electron config
{
"width": 800,
"height": 600,
"useContentSize": false,
"center": true,
"minWidth": 0,
"minHeight": 0,
"resizable": true,
"movable": true,
"minimizable":true,
"maximizable": true,
"closable": true,
"focusable": true,
"alwaysOnTop": false,
"fullscreen": false,
"fullscreenable": true,
"simpleFullscreen": false,
"skipTaskbar": false,
"kiosk": false,
"title": "",
"icon": "",
"show": true,
"frame": true,
"parent": null,
"modal": false,
"acceptFirstMouse": false,
"disableAutoHideCursor": false,
"autoHideMenuBar": false,
"enableLargerThanScreen": false,
"backgroundColor": "#FFF",
"hasShadow": true,
"darkTheme": true,
"transparent": false,
"type": "default",
"titleBarStyle": "default",
"thickFrame": true,
"zoomToPageWidth": false,
"webPreferences": {
"devTools": true,
"nodeIntegration": true,
"nodeIntegrationInWorker": false,
"nodeIntegrationInSubFrames": false,
"preload": "",
"sandbox": false,
"enableRemoteModule": true,
"zoomFactor": 1.0,
"javascript": true,
"webSecurity": true,
"allowRunningInsecureContent": false,
"images": true,
"textAreasAreResizable": true,
"webgl": true,
"webaudio": true,
"plugins": false,
"experimentalFeatures": false,
"scrollBounce": true,
"defaultFontSize": 16,
"defaultMonospaceFontSize": 13,
"minimumFontSize": 0,
"defaultEncoding": "UTF-8",
"backgroundThrottling": true,
"offscreen": false,
"contextIsolation": false,
"nativeWindowOpen": false,
"webviewTag": false,
"safeDialogs": false,
"navigateOnDragDrop": false,
"autoplayPolicy": "no-user-gesture-required"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment