-
javascript
chrome extension - capturing keyboard input
capturing keyboard input in chrome extensions
onkeyup = function(event) {
if (event.keyCode == 113) {
doAwesomeStuff();
}
}
Add comment
To add a comment, please : Login or Sign up