Copy markdown link
Installation
copy.md
←Please drag & drop this button to bookmark bar
or copy & paste code below
Description
現在のページのリンクをmarkdown形式でコピーします。
Source code
copy_md_link.jsconst url = location.href;
const title = document.title;
navigator.clipboard.writeText(`[${title}](${url})`);
window.alert('Link copied to clipboard.');
Minified source code
javascript:!function(){const o=location.href,t=document.title;navigator.clipboard.writeText(`[${t}](${o})`),window.alert("Link copied to clipboard.")}();
Edit this page