Echo is a prompt browser extension for AI chatbots. Save, organize, and insert your best AI prompts with a single click directly into your favorite ai chatbots
Install for Chrome/Chromium | Install for Firefox
- Save and organize prompts with titles, content, and tags.
- Click any prompt to insert it directly into the active input field of supported AI chat websites.
- Smart search and filter to Quickly find prompts by title, content, or tags.
- Drag & Drop Reordering to Easily organize your prompt list.
- Dark/Light mode for Comfortable viewing, day or night.
- Press
Ctrl+K
(orCmd+K
) to quickly open the add prompt dialogue. - All data is stored locally within your browser profile.
Prerequisites: A Chromium-based browser (Brave, Chrome, Edge...) or Firefox (zen, librewolf...).
Option 1: Download Pre-Built Package from Releases
Pre-built packages for Chrome/Chromium and Firefox are available on the Releases page. Download the appropriate .zip
file and follow the manual installation steps below.
Option 2: Install from Source (Developer/Testing)
- Clone or download this repository.
- Navigate to the
dist
folder. - Select the appropriate build:
- For Chrome/Chromium: Use the
dist/chromium
folder ordist/chromium.zip
. - For Firefox: Use the
dist/firefox
folder ordist/firefox.zip
.
- For Chrome/Chromium: Use the
- Chrome/Chromium:
- Open
chrome://extensions
. - Enable "Developer mode" (usually a toggle in the top right).
- Click "Load unpacked".
- Select the
dist/chromium
folder.
- Open
- Firefox:
- Open
about:debugging#/runtime/this-firefox
. - Click "Load Temporary Add-on".
- Select the
manifest.json
file inside thedist/firefox
folder, or select thedist/firefox.zip
file.
- Open
- Click the Echo extension icon in your browser toolbar to open the popup.
- Click "Add Prompt" to save a new prompt.
- Give your prompt a title, paste the content, add optional tags (comma-separated), and save.
- Navigate to a supported AI chat website (e.g., chat.deepseek.com, claude.ai...).
- Click into the chat input field where you want the prompt.
- Open the Echo popup again.
- Find your prompt (use search/tags if needed) and click the "Insert" button (chat_paste_go icon).
- The prompt text will be inserted directly into the chat input. Press Enter to submit.
Currently supports inserting prompts into:
- DeepSeek
- Qwen (Tongyi Lab)
- Kimi (Moonshot AI)
- Claude (Anthropic)
- gemini (google)
- Perplexity
- T3 Chat
- (More can be added by updating the
manifest.json
files)
- Ensure you have Node.js installed.
- Install dependencies (if
archiver
orfs-extra
are listed inpackage.json
, otherwise they need to be installed):npm install fs-extra archiver
- Run the build script:
node scripts/build.js
- This will generate
dist/chromium.zip
anddist/firefox.zip
.
- Placeholders: Add support for dynamic placeholders (e.g.
[topic]
). - Favorites: Ability to mark prompts as favorites.
- Improved Data Storage: Explore options beyond
localStorage
for larger libraries. - Enhanced UI/UX: Refinements based on feedback.
echo-prompt/ ├── README.md ├── .gitignore ├── src/ │ ├── popup.js │ ├── content.js │ ├── darkmode.js │ ├── popup.css │ └── popup.html ├── manifest/ │ ├── manifest-chromium.json │ └── manifest-firefox.json └── scripts/ └── build.js
Contributions are welcome! Please feel free to submit issues or pull requests.