Skip to content

Instantly share code, notes, and snippets.

@jesgundy
Created November 28, 2017 21:15
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 jesgundy/ae9b2deff59f8dda3d954d0a08bb967b to your computer and use it in GitHub Desktop.
Save jesgundy/ae9b2deff59f8dda3d954d0a08bb967b to your computer and use it in GitHub Desktop.
to import lodash into chrome dev tools console
var el = document.createElement('script');
el.src = "https://cdn.jsdelivr.net/lodash/4.11.1/lodash.min.js";
el.type = "text/javascript";
document.head.appendChild(el);
// Use the following in a bookmarklet:
javascript:var el=document.createElement('script');el.src="https://cdn.jsdelivr.net/lodash/4.11.1/lodash.min.js";el.type = "text/javascript";document.head.appendChild(el);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment