Skip to content

Instantly share code, notes, and snippets.

@AramZS
Created April 17, 2014 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AramZS/11005927 to your computer and use it in GitHub Desktop.
Save AramZS/11005927 to your computer and use it in GitHub Desktop.
Allow you to call a script file from inside of Chrome console
var script= document.createElement('script');
script.type= 'text/javascript';
script.src= 'http://someurl.com/somefile.js';
document.head.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment