王道の本筋からやっていきたい。
(() => {
const text = `${document.title}\n👉 ${location.href}`;
// copy to clipboard
focus(); // avoid DOMException: Document is not focused.
navigator.clipboard.writeText(text).then(
() => alert(text),
error => alert(error.message)
);
})();
これでいいんかな。