Script to add keyboard controls to Theme Slaughter

I made up a tiny script to add keyboard controls to the slaughter if anyone is interested.

Just copy the script into the console when on the slaughter page. Uses Z for yes, X for no, and K for flag. You can change the keys by changing the variable declarations, of course.

```javascript var yesKey = "z" var noKey = "x" var flagKey = "k"

document.addEventListener("keypress",function(e){ if (e.key == yesKey){ document.querySelector("button.-green").click() } if (e.key == noKey){ document.querySelector("button.-red").click() } if(e.key == flagKey){ document.querySelector("button.-tiny").click() } })

```