Recaho Helper Chrome Extension
Browser extension that improves productivity while working inside Recaho.

A lightweight Chrome extension that layers productivity shortcuts onto Recaho — converting plain-text messages into structured inputs and cutting down repetitive manual data entry.
Problem #
Working inside Recaho involved a fair amount of repetitive manual data entry, including retyping information that already existed as plain text elsewhere in the workflow.
Solution #
A content-script-based Chrome extension (Manifest V3) that watches the page for relevant text and turns it into structured input automatically, plus a set of productivity shortcuts layered directly into the existing Recaho interface.
function parseAndFillFromText(rawText) {
const fields = extractStructuredFields(rawText);
Object.entries(fields).forEach(([selector, value]) => {
const input = document.querySelector(selector);
if (input) setNativeInputValue(input, value);
});
}Architecture #
A content script observes the Recaho page for relevant text blocks, parses them into structured field data client-side, and fills the corresponding form inputs directly — no backend, no data leaving the browser.
Stack #
| Layer | Choice | Why |
|---|---|---|
| Extension | JavaScript, Manifest V3 | Lightweight, client-side-only automation with minimal permissions |
| Integration | Content scripts | Injects into the existing Recaho interface without modifying it server-side |
Problems solved #
- Reduced repetitive manual data entry tasks
- Converted plain text messages into structured inputs
- Added productivity shortcuts inside existing workflows
- Created lightweight automation for daily operations
Lessons learned #
This wasn't a big feature — it automated one repetitive step. But because it ran inside the exact workflow people used every day, the cumulative time saved mattered more than a flashier feature would have.
Links #
- GitHub: recaho-helper
- Chrome Web Store: Recaho Helper
Related content
Recaho Dispatcher Extension: Engineering a Browser Extension That Streamlined Dispatch Operations
A Chrome extension that injects a live operational dashboard and workflow automation into an existing dispatch platform, with zero backend access or modification.
nvim-log-insert: A Neovim Plugin That Writes Your console.log Statements For You
A tiny Lua plugin that inserts a detailed console.log — file, line number, function, and variable name — with a single leader keymap.
My Complete Neovim Setup for JavaScript & TypeScript
Full breakdown of my Neovim Kickstart + custom plugin setup