EDIT: Just realized this was necrod
Posted this just recently
This disables all browser keycodes
document.addEventListener('keydown', function(event) {
event.preventDefault();
});
document.addEventListener('keydown', function(event) {
if(event.keyCode == 123) {
event.preventDefault();
}
});
For the other keys you can look up their code here
keycode.info