Created
September 10, 2017 07:01
-
-
Save cyancey76/16981928aae6ec687fd93012f0d5002a to your computer and use it in GitHub Desktop.
Javascript Bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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