Skip to content

Instantly share code, notes, and snippets.

@seanblanton
Created April 20, 2017 18:14
Show Gist options
  • Save seanblanton/09c429a7fd0157a24e33230acd00334b to your computer and use it in GitHub Desktop.
Save seanblanton/09c429a7fd0157a24e33230acd00334b to your computer and use it in GitHub Desktop.
Excecute a gremlins.js instance from the console
var script = document.createElement('script');
script.type = 'text/javascript';
script.src = 'https://rawgithub.com/marmelab/gremlins.js/master/gremlins.min.js';
document.head.appendChild(script);
setTimeout(function(){
gremlins
.createHorde()
.unleash();
},500);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment