Skip to content

Instantly share code, notes, and snippets.

@Frozenfire92
Last active August 29, 2015 14:23
Show Gist options
  • Save Frozenfire92/bfc566b05dee0fad100a to your computer and use it in GitHub Desktop.
Save Frozenfire92/bfc566b05dee0fad100a to your computer and use it in GitHub Desktop.
Inject a library from a cdn in any website through the console
var s = document.createElement('script');
s.type = "text/javascript";
s.src = "https://code.jquery.com/jquery-2.1.4.min.js";
document.head.appendChild(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment