A browser extension that makes copying links easy. When you click the extension icon, it automatically copies the current tab's title and URL in markdown format: [Page Title](https://example.com).
- One-click copying: Click the extension icon to copy the current page as a markdown link
- Bun (JavaScript runtime and bundler)
Install dependencies:
bun installBuild the extension for Chrome:
bun run index.tsxThis will generate the built extensions in the dist/ directory.
The project uses browserrc for building browser extensions with Bun.
- Open Chrome and go to
chrome://extensions/ - Enable "Developer mode" in the top right
- Click "Load unpacked" and select the
dist/chrome/directory
- Navigate to any webpage
- Click the Easy Copy extension icon in your browser toolbar
- The markdown link
[Page Title](https://example.com)will be copied to your clipboard - Paste it anywhere you need a formatted link
The extension requires the following permissions:
clipboardWrite: To copy text to clipboardtabs: To access current tab informationoffscreen: To use offscreen documents for clipboard operations