ChekTek127 downloadsAdds a copy button next to markdown links and bare URLs so you can copy the URL with a single click.
An Obsidian plugin that adds a small copy button next to links and images, so you can copy their target to your clipboard with a single click — much like the copy button next to code blocks.

[text](https://…)),
bare URLs (https://…), and wikilinks ([[Note|Alias]]).![[image.png]]) and markdown images
() with a floating copy button for rendered images.Once approved: Settings → Community plugins → Browse, search for "Copy Link Button", install, and enable.
main.js, manifest.json, and styles.css from the
latest release.<vault>/.obsidian/plugins/copy-link-button/.npm install --legacy-peer-deps # obsidian pins an exact CodeMirror peer dep
npm run dev # watch + rebuild main.js
Symlink (or copy) the repo into your vault's plugins folder to test live:
ln -s "$(pwd)" "<vault>/.obsidian/plugins/copy-link-button"
npm run build # type-check + production build (main.js in repo root)
npm run package # production build collected into dist/ for distribution
Pushing to main runs the release workflow. When the version in
manifest.json doesn't yet have a matching git tag, the workflow builds the
plugin and publishes a GitHub release (tagged with the bare version, e.g.
1.0.0) with main.js, manifest.json, and styles.css attached.
To cut a release: bump the version in manifest.json (and versions.json /
package.json), commit, and push to main.