sindresorhus/electron-unhandled
GitHub で見るRegister it automatically on new browser windows
Open
#1 opened on 2017年5月15日
enhancementhelp wanted
説明
Would be nice to have an opt-in option to have it register the handler on all new browser windows.
Could do something like this:
app.on('browser-window-created', (e, win) => {
win.webContents.executeJavaScript('');
});
And execute some JS that includes it.