[タイトル URL]という形式でページのタイトルとURLをalertします
/* * @title Scrapboxのリンク形式でタイトルとURLをコピー * @description [タイトル URL]という形式でページのタイトルとURLをコピーします * @include * * @license MIT License * @require */ const content = `[${document.title} ${location.href}]`; window.copy(content);