Dragging to the bookmarks bar is a desktop-only feature. On mobile, tap Copy above, then manually create a new bookmark in your browser and paste the compiled code as the URL.
On mobile, dragging to the bookmarks bar is not supported — see the note below the output pane for the manual installation steps.
On mobile, dragging to the bookmarks bar is not supported. To install a bookmarklet:
A bookmarklet is a browser bookmark whose URL begins with javascript: instead of
http://. When clicked, the browser executes the embedded JavaScript on the current
page — no browser extension or installation required. Common uses include toggling dark mode,
extracting data from tables, tweaking page styles, or automating repetitive tasks.
Your code passes through a strict, sequential pipeline:
(function(){ … })() so local variables don't leak into the
target page's global scope.
%, ", ', #, &,
<, >, `) are percent-encoded so the browser
doesn't mangle your script before it executes.
All compilation runs entirely in your browser — your code never leaves your device.