It is possible to catch Ctrl + + / Ctrl + - events on Firefox with :
window.onkeydown = function(event)
{
if(event.ctrlKey && event.keyCode == 61)
CtrlPlus();
if(event.ctrlKey && event.keyCode == 169) // or == 54, depends on keyboard layout
CtrlMinus();
};
But in Chrome, it doesn't work : Ctrl + + is always linked at Chrome's internal "Zoom +" command.
How is it possible to override Chrome's Ctrl + + ?