mattmarotta183 downloadsNon-destructive link preview and enrichment. Automatically displays rich metadata previews for URLs - shows page titles, descriptions, and favicons inline without modifying your markdown source.
Rich, non-destructive link previews for Obsidian
Transform plain URLs into beautiful previews with title, description, and favicon — without modifying your markdown.


Plugin works only in Live Preview mode
Head to Settings > URL Enricher to customize global behaviour, or use frontmatter to customize per page.
Customize per-page:
Override global settings per-page. Must start on line 1!
---
preview-style: card # inline | card
max-card-length: 400 # 1-5000 (recommended: 100+)
max-inline-length: 200 # 1-5000 (recommended: 50+)
show-favicon: true # true | false
include-description: true # true | false
inline-color-mode: subtle # none | subtle
card-color-mode: subtle # none | subtle
---
Inline (compact): 
Card (detailed): 
Want specific colors? Use Obsidian CSS snippets:
url-enricher-colors.css:/* Inline preview background */
.url-preview--inline {
background: #4a90e2 !important;
}
/* Card preview background */
.url-preview--card {
background: #50c878 !important;
}
https://github.com # Bare URL
[custom text](https://github.com) # Markdown link
[](https://github.com) # Empty link text
[[https://github.com]] # Wikilink (URLs only!)
Not supported: Image embeds , code blocks, non-HTTP protocols
https://example.com---preview-style (not previewstyle)Some sites block bots (403 Forbidden). Disable warnings: Settings → URL Enricher → HTTP Error Warnings → OFF
For more help, see TROUBLESHOOTING.md.
Special handling for popular sites:
r/Subreddit — Title, extracts post content@usernameThis plugin makes network requests to provide rich previews:
Privacy:
npm install # Install dependencies
npm run dev # Watch mode
npm run build # Production build
npm run lint # Run ESLint (enforces Obsidian plugin guidelines)
npm test # Run tests (618 tests)
See CONTRIBUTING.md for detailed development guide.
Contributions welcome! See CONTRIBUTING.md for:
MIT - See LICENSE
Made with ❤️ for the Obsidian community