I made the following greasemonkey script to disable the shortcut:
(function(){
unsafeWindow.document.addEventListener('keydown', function(e) {
if (e.keyCode === 27) {
e.stopImmediatePropagation();
e.stopPropagation();
return;
}
}, true);
})();
Run code source
share