Skip to content

Instantly share code, notes, and snippets.

@ekiwi111
Created March 16, 2018 00:45
Show Gist options
  • Save ekiwi111/cb5348e86120bbe8f752718e110a2c06 to your computer and use it in GitHub Desktop.
Save ekiwi111/cb5348e86120bbe8f752718e110a2c06 to your computer and use it in GitHub Desktop.
Make underscore and jQuery available on the page (e.g. to use in Google Chrome Dev Tools) if not violating CSP
var underscore = document.createElement('script');
underscore.src = "https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.3/underscore-min.js";
underscore.type = "text/javascript";
document.head.appendChild(underscore);
var jquery = document.createElement('script');
jquery.src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js";
jquery.type = "text/javascript";
document.head.appendChild(jquery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment