Skip to content

Instantly share code, notes, and snippets.

@urbansky
Created July 7, 2016 07:05
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 urbansky/098a78afc3bde101e95c09b5ec4474f7 to your computer and use it in GitHub Desktop.
Save urbansky/098a78afc3bde101e95c09b5ec4474f7 to your computer and use it in GitHub Desktop.
Inject JQuery to a page in ChromeDeveloper Tools
// run in console
// see: http://stackoverflow.com/questions/7474354/include-jquery-in-the-javascript-console
var script = document.createElement('script');script.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js";document.getElementsByTagName('head')[0].appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment