Skip to content

Instantly share code, notes, and snippets.

@kawarimidoll
Last active January 12, 2021 06:02
Show Gist options
  • Save kawarimidoll/8d9e229617de06363a51a1805df6add9 to your computer and use it in GitHub Desktop.
Save kawarimidoll/8d9e229617de06363a51a1805df6add9 to your computer and use it in GitHub Desktop.
A bookmarklet that shows the URL of the current page as a QR code on a modal window

A bookmarklet that shows the URL of the current page as a QR code on a modal window. Click the background to close the modal.

javascript:((modal,fixed,mid)=>{modal.style=fixed;modal.innerHTML=`<div style="${fixed};left:0;top:0;width:100%;height:100%;background-color:#000C;cursor:pointer" onclick="this.parentNode.parentNode.removeChild(this.parentNode)"></div><p style="${fixed}${mid};color:white;font-size:3em">wait...</p><img style="${fixed}${mid}" src="https://chart.googleapis.com/chart?cht=qr&chs=256x256&chco=000022&chl=${location.href}">`;document.body.appendChild(modal)})(document.createElement("div"),"position:fixed",";left:50%;top:50%;transform:translate(-50%,-50%)")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment