Created
April 20, 2017 18:14
-
-
Save seanblanton/09c429a7fd0157a24e33230acd00334b to your computer and use it in GitHub Desktop.
Excecute a gremlins.js instance from the console
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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