I used a machine to create this bookmarklet because I was getting increasingly frustrated with how difficult it is to copy and paste a webpage's title.
javascript:(function(){const%20title=document.title;const%20description=document.querySelector('meta[name="description"]')?.getAttribute('content')||'';const%20url=window.location.href;alert(`Title:\n${title}\n\nDescription:\n${description}\n\nURL:\n${url}`);})();