Plugin
Hover External Link
Jamie Brynes7.3k
Hover on external links to see the destination URL.
- Overview
- Updates
- Privacy
Add hover URL previews to external links in your rendered Markdown. View tooltips when hovering over links with different text than the URL in preview mode. Customize the tooltip's background and text colors with CSS variables for a personalized look.
Hover External Link Obsidian Plugin
An Obsidian plugin that adds hover URL previews to external links in your rendered Markdown.
Demo
Installation
From in Obsidian
🚧 Coming Soon! 🚧
Manually
- Download
main.js,manifest.json, andstyles.cssfrom the latest release. - Place them in
<vault>/.obsidian/plugins/hover-external-link/folder (you'll need to create this).
Usage
This plugin will add on-hover tooltips to all external links if the text of the link is not the same as the URL. This only works in the preview mode.
This link will have a hover tooltip: [Google](www.google.com).
This link won't: [www.google.com](www.google.com).
Customization
This plugin exposes two CSS variables that you can use to set the tooltip background and text color.
.theme-light {
--link-tooltip-background: #333;
--link-tooltip-text: #fff;
}
.theme-dark {
--link-tooltip-background: #ccc;
--link-tooltip-text: #000;
}
Created
Aug 23, 2021
Last updated
Aug 23, 2021
Updates
1 releases
Downloads
7.3k
Compatible with
0.10.2+
License
MIT