Markdown links follow the format [display text](url). They're the standard way to reference web pages in Obsidian notes, GitHub issues, READMEs, Slack messages, Notion docs, and developer documentation.
The problem? Chrome doesn't have a native "copy as Markdown link" option. The default "Copy link address" only copies the raw URL. Here are three ways to get a Markdown-formatted link, from fastest to most manual.
The fastest way to copy a link as Markdown is a lightweight Chrome extension like Copy as Markdown Link. Install it, click the toolbar icon, and [Page Title](url) is on your clipboard instantly.
Alternatively, install from source (developer mode):
chrome://extensions/The extension also adds a right-click context menu option — "Copy as Markdown link" — so you don't even need the toolbar.
If you'd rather not install any extension, you can use a bookmarklet. Create a new bookmark in Chrome and paste this as the URL:
javascript:(function(){var t=document.title.replace(/\s*[-—|]\s*(YouTube|Medium|GitHub|HN|Reddit).*$/,'').trim();navigator.clipboard.writeText('['+t+']('+location.href+')')})();
Click the bookmark on any page to copy a Markdown link to your clipboard.
Tradeoff: No visual feedback, no context menu, no link-specific copy (only copies the current page). Won't work on chrome:// pages.
If you only copy a Markdown link once in a while, manual works:
[, paste title (Ctrl+V / Cmd+V)](, paste URL (Ctrl+V / Cmd+V))That's seven actions per link. At 20 links per day, that's 140 extra key presses. Do the math for a year.
Markdown links are portable. Unlike rich-text links that lose formatting when pasted into different apps, [title](url) works everywhere:
[title](url) and it auto-formats| Method | Speed | Best for |
|---|---|---|
| Extension | 1 click | Daily users (10+ links/day) |
| Bookmarklet | Occasional users (no install) | |
| Manual | 7 steps | Rare use (1-2 links/week) |
Free · 5KB · Zero tracking · Open source