A Node.js Module for electron apps to bring back the browser window based shortcuts in electron engine >= 3.0.0
npm install electron-window-shortcut
const {
register,
unregister,
attachToWebContent
} = require('electron-window-shortcut');
register('Command+G', (event)=>{
event.preventDefault();
console.log('Command+G pressed..');
});
unregister('Command+G');
attachToWebContent(webContent);