sindresorhus/electron-unhandled
在 GitHub 查看Register it automatically on new browser windows
Open
#1 创建于 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.