Skip to content

Instantly share code, notes, and snippets.

@tanabee
Last active December 4, 2015 05:46
Show Gist options
  • Save tanabee/0fef962830585ec499ee to your computer and use it in GitHub Desktop.
Save tanabee/0fef962830585ec499ee to your computer and use it in GitHub Desktop.
Chrome 拡張開発時に jQuery を利用したい時など
var script = document.createElement('script');
script.src = 'http://code.jquery.com/jquery-2.1.4.min.js';
document.body.appendChild(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment