Best Markdown Link Copy Chrome Extension: Copy Any Page as [title](url)
Published July 23, 2026 · Product tools
If you write in Markdown — for Obsidian notes, GitHub issues, documentation, or Slack messages — you know the friction of copying a link in Markdown format. You highlight the title, copy it. Switch to the URL bar, copy the URL. Then type [, paste title, type ](, paste URL, type ). That's seven separate actions for one link.
Do that 20 times a day and you've wasted 10 minutes on mechanical keystrokes. A Markdown link copy Chrome extension eliminates this entirely.
What Makes a Great Markdown Link Copy Extension?
After testing several approaches — bookmarks, bookmarklets, and extensions — the criteria for a good tool are:
- One-click operation: Click the toolbar icon and the link is on your clipboard. No dialogs, no confirmation boxes.
- Context menu support: Right-click on any page or specific link to copy it as Markdown without touching the toolbar.
- Title cleanup: Automatically strips site suffixes like " - YouTube", " | Medium", " — GitHub" so your links are clean.
- Zero bloat: No analytics, no tracking, no network calls. Just a clipboard operation.
- Visual feedback: You need to know it worked without alt-tabbing to check.
How Copy as Markdown Link Works
Copy as Markdown Link is a Chrome extension (Manifest V3) that does exactly one thing: copy the current page's title and URL as a Markdown link. Three ways to trigger it:
- Toolbar click: Click the extension icon →
[Page Title](url) is on your clipboard.
- Page context menu: Right-click anywhere → "Copy as Markdown Link".
- Link context menu: Right-click a specific hyperlink → "Copy link as Markdown".
The toolbar badge flashes "Copied!" in green for 1.5 seconds so you know it worked without checking your clipboard.
Title Cleanup Is the Killer Feature
Raw document.title values are ugly. A YouTube video might be "How to use Git — 2026 Tutorial - YouTube". A Medium article might be "Why Tailwind CSS Wins | Medium". A GitHub PR could be "Fix #142: reduce memory usage — Pull Request #143 — user/repo — GitHub".
The extension strips these common suffixes automatically. No configuration needed.
Technical Specs
- ~60 lines of vanilla JavaScript
- Zero dependencies — pure Chrome APIs
- ~5KB unpacked
- Permissions:
activeTab, contextMenus, clipboardWrite only
- Manifest V3 compliant
- Open source under MIT License
Who Should Use It?
- Obsidian users who paste links into daily notes
- GitHub maintainers writing issues, PR descriptions, and READMEs
- Technical writers documenting APIs and workflows
- Developers writing Slack messages or Notion docs with linked references
- Researchers collecting bookmarks and references
Alternatives Comparison
There are other ways to copy Markdown links, but each has tradeoffs:
- Bookmarklets: Work in any browser but require setup, no visual feedback, and don't work on Chrome's extension pages.
- Manual typing: Free, but costs seconds per link — adds up fast for frequent linkers.
- Built-in "Copy link" (browser): Only copies the raw URL, not Markdown format.
- Full-featured extensions: 10-50MB extensions with analytics, permissions you don't need, and features you'll never use.
Copy as Markdown Link is the Goldilocks option: does exactly one thing, does it well, weighs 5KB, and respects your privacy.
Get Started
Install directly from the Chrome Web Store, or download the ZIP and load unpacked from chrome://extensions/.
→ Back to Copy as Markdown Link homepage