Official extensions for PasteFox — share code and text snippets from your favorite tools.
Website · API Docs · Report a Bug
| Extension | Platform | Status | Install |
|---|---|---|---|
| VS Code / Kiro | VS Code, Kiro, Cursor | ✅ Published | VS Marketplace · Open VSX |
| Chrome | Chrome, Edge, Brave | ✅ Ready | Load unpacked |
| Firefox | Firefox | ✅ Published | Firefox Add-ons |
| IntelliJ | IntelliJ, WebStorm, PyCharm, GoLand | ✅ Ready | Build from source |
| CLI | Terminal (any OS) | ✅ Ready | npm i -g pastefox-cli |
| GitHub Action | GitHub Actions | ✅ Ready | Usage |
Share code directly from your editor. Right-click selection, use the command palette, or click the status bar button.
ext install pastefox.pastefox
Right-click any selected text on a webpage to share it to PasteFox. Includes a popup editor with visibility and expiration controls.
Install locally:
- Go to
chrome://extensions - Enable "Developer mode"
- Click "Load unpacked" → select the
chrome/folder
Works with all JetBrains IDEs. Right-click in the editor or project tree → PasteFox → Share.
Build from source:
cd intellij
./gradlew buildPluginPlugin ZIP will be in build/distributions/. Install via Settings → Plugins → Install from Disk.
Same features as the Chrome extension, built for Firefox. Right-click selected text to share, or use the popup.
Install from Firefox Add-ons:
→ addons.mozilla.org/firefox/addon/pastefox
Install locally (for testing):
- Go to
about:debugging#/runtime/this-firefox - Click "Load Temporary Add-on"
- Select
manifest.jsonfrom thefirefox/folder
Share pastes from your terminal. Pipe content, upload files, list and manage pastes.
npm install -g pastefox-cli
pastefox login pk_your_key
pastefox create myfile.py
cat error.log | pastefox create --title "Logs" --expires 1h
pastefox list
pastefox get abc123 > output.pyCreate pastes from your CI/CD workflows. Share build logs, test reports, or any file.
- uses: PasteFox/extensions/github-action@main
with:
api-key: ${{ secrets.PASTEFOX_API_KEY }}
file: build.log
title: "Build Log"
expires: 7dAll extensions require a PasteFox API key:
- Create a free account at pastefox.com
- Go to Dashboard → API Keys
- Create a key and paste it into the extension settings
If you have a custom domain configured on PasteFox, you can set it as the instance URL in any extension. Pastes will be created and opened via your custom domain.
Contributions are welcome! Here's how to get started:
- Fork this repository
- Create a branch for your feature or fix (
git checkout -b my-feature) - Make your changes in the relevant extension folder
- Test locally
- Submit a pull request
Please follow the existing code style and include a clear description of your changes.
Found a bug or have a feature request? Open an issue and include:
- Which extension (VS Code, Chrome, IntelliJ)
- Steps to reproduce
- Expected vs actual behavior
- Extension version and platform
MIT — see LICENSE for details.