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%)")