Skip to content

Instantly share code, notes, and snippets.

@brothertao
Created May 21, 2013 08:58
Show Gist options
  • Save brothertao/5618448 to your computer and use it in GitHub Desktop.
Save brothertao/5618448 to your computer and use it in GitHub Desktop.
load script to chrome page
(function(window) {
var document = window.document;
var loadScript = function(uri) {
var script = document.createElement('script');
script.src = uri;
document.querySelector('head').appendChild(script);
};
window.loadScript = loadScript;
})(window)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment