Skip to content

Instantly share code, notes, and snippets.

@cyancey76
Created September 10, 2017 07:01
Show Gist options
  • Save cyancey76/16981928aae6ec687fd93012f0d5002a to your computer and use it in GitHub Desktop.
Save cyancey76/16981928aae6ec687fd93012f0d5002a to your computer and use it in GitHub Desktop.
Javascript Bookmarklet
javascript: (function(){
var script = document.createElement('script');
script.id = '<name-here>';
script.type = 'text/javascript';
script.src = '<url-here>';
document.body.appendChild(script);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment