I mean is there any way to prevent the default accesskey in Chrome.
var text = document.getElementById("text");
text.onkeyup = function(e) {
  if(e.ctrlKey && e.keyCode == 72) {
    // do something...
    alert("You wont see me cause Chrome will open history manager");
  }
}
<textarea id="text"></textarea>