sindresorhus/electron-unhandled
View on GitHubRegister it automatically on new browser windows
Open
#1 opened on May 15, 2017
enhancementhelp wanted
Description
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.