Skip to content

Instantly share code, notes, and snippets.

@jpluimers
Forked from theconektd/qr-code-bookmarklet.js
Created August 20, 2022 11:23
Show Gist options
  • Save jpluimers/f240f8eaf96b1982e3ee61d3c306cec4 to your computer and use it in GitHub Desktop.
Save jpluimers/f240f8eaf96b1982e3ee61d3c306cec4 to your computer and use it in GitHub Desktop.
Just a little bookmarklet that will open a new window with a QR code for the current page's URL
javascript:(function(){ window.open( 'http://chart.apis.google.com/chart?cht=qr&chs=512x512&chl=' + document.location.href,'qrcodepopup','width=700,height=700') })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment