mirror of
https://github.com/jamiebrynes7/obsidian-hover-external-link.git
synced 2026-07-22 05:50:31 +00:00
No description
| .github | ||
| src | ||
| .gitignore | ||
| LICENSE | ||
| manifest.json | ||
| package.json | ||
| README.md | ||
| rollup.config.js | ||
| styles.css | ||
| tsconfig.json | ||
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;
}