Hello,
I don’t like it that you always have to drag your mouse to ‘run’ to run your code. So I made a simple fix. (I did this in google chrome)
If you inspect on the codecademy site (while in an exercise, ctrl+shift+i in google) you can see a console tab.
Go to there and paste in the console te following code:
window.addEventListener("keydown", function(event){
if (event.altKey) {
var a =document.getElementsByClassName("basicBtn__SXDoTLXQzXLUYFBN37_VI");
a[0].click();
}});
If you press alt now (wile your typing) it will run your code!
I find this a very use full feature and maybe you to.
PS: You can change the code to another key if want.
PSS: I am dutch so sorry if I have bad grammar.