Is there a way to programmatically get input from the Javascript Console of Google Chrome, similar to readline() in Firefox?
Sorry, doesn't work on Chrome JS Console, just works on the repl from repl.it
Example from repl.it:
console.log("Enter your name:"); console.read(function(name) { console.log('Your name is ' + name + '.'); });