Skip to content

Instantly share code, notes, and snippets.

@Gerhut
Last active February 11, 2024 22:18
Show Gist options
  • Save Gerhut/2ef47bfc16861b5df6003d5ed6fa8df9 to your computer and use it in GitHub Desktop.
Save Gerhut/2ef47bfc16861b5df6003d5ed6fa8df9 to your computer and use it in GitHub Desktop.
Embed custom scripts by Bookmarklet
(function (_) {
var $ = document.createElement('SCRIPT')
$.src = _
$.onerror = function () { alert('Failed to load ' + _) }
document.body.appendChild($)
} ("data:application/javascript,alert('Hello, world.')"))

[Add Alert Bookmarklet](javascript:(function (_) {var $ = document.createElement('SCRIPT'); $.src = _; $.onerror = function () { alert('Failed to load ' + _) }; document.body.appendChild($)} ('data:application/javascript,alert('Hello, world.')')))

Add Alert Bookmarklet

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment