Leon Greil392 downloadsCopy or open a shareable obsid.net link for the current note — a clickable HTTPS wrapper around Obsidian deep links.
Copy or open a shareable obsid.net link for any note with one click.
obsid.net wraps Obsidian's obsidian:// deep-link scheme in a standard https:// URL so links stay clickable in chat apps, emails, and anywhere that strips custom URI schemes.
Ctrl/Cmd + PGiven a vault named MyVault and a note at Projects/Ideas.md, the plugin generates:
https://obsid.net/?vault=MyVault&file=Projects%2FIdeas
Opening that URL in any browser redirects to:
obsidian://open?vault=MyVault&file=Projects%2FIdeas
…which opens the note directly in Obsidian. All conversion happens in the browser; no data is sent to any server.
main.js and manifest.json from the latest release.obsidian/plugins/obsid-link/ inside your vault| Action | How to trigger |
|---|---|
| Copy obsid.net link | Command Palette → Copy obsid.net link for current note |
| Open via obsid.net | Command Palette → Open current note via obsid.net |
| Ribbon icon | Click the 🔗 icon in the left sidebar |
The ribbon icon action (copy vs. open) is configurable under Settings → obsid.net Link.
# Clone into your vault's plugins folder for live testing
git clone https://github.com/yourusername/obsidian-obsid-link \
/path/to/vault/.obsidian/plugins/obsid-link
cd /path/to/vault/.obsidian/plugins/obsid-link
npm install
npm run dev # watch mode — recompiles on save
Reload Obsidian after each build (or use the Hot Reload community plugin).
minAppVersion in manifest.json if the minimum Obsidian version changednpm version patch (or minor / major) — this bumps manifest.json, package.json, and versions.json automaticallygit push && git push --tags
Pull requests and issues are welcome. Please open an issue before starting significant work so we can discuss the approach.
This plugin is a thin Obsidian wrapper around obsid.net, built and maintained by Joost de Valk (founder of Yoast). All the actual link-conversion and redirect logic is his work — the source is at github.com/jdevalk/obsid.net.
This plugin simply brings that service into Obsidian as a native command and ribbon button. If you find obsid.net useful, consider starring his repository.