v1
javascript:a=prompt('mdlink','['+document.title+']('+document.location.href+')');a.preventDefault;
v2
javascript:(()=>{const e=`[${document.title}](${location.href})`,t=document.createElement("textarea");t.textContent=e,document.body.appendChild(t),t.select(),document.execCommand("copy"),document.body.removeChild(t),console.log(`Copyed this website title and URL: ${e}`)})();
v1
javascript:prompt('Title + URL',document.title+' '+window.location.href);
v2
javascript:(()=>{const e=`${document.title} ${location.href}`,t=document.createElement("textarea");t.textContent=e,document.body.appendChild(t),t.select(),document.execCommand("copy"),document.body.removeChild(t),console.log(`Copyed this website title and URL: ${e}`)})();