You can probably do it from js in html, with document.body.onkeydown.
It will look like this.

document.body.onkeydown = function(e){
    //F8 == 119 (keyCode)
    alert(String.fromCharCode(e.keyCode)+" --> "+e.keyCode);
};
1 Like