Hey Product Hunt! πŸ‘‹

byβ€’

Chrome extensions are the fastest way to bend the web to your will but building one means wrestling with manifest.json, service workers, content scripts, and a build pipeline. Most people with a great idea never get past "I wish my browser could just…"

Plugthis fixes that. Describe the extension you want in plain English, and Plugthis generates a real, working, installable Chrome extension: code, manifest, assets, and all. No command line. No boilerplate. No dev setup.

How it works:

1. πŸ“ Describe your extension ("Summarize the article I'm reading and let me ask questions about it")

2. βš™οΈ PlugMint's AI writes the full extension and self-checks that it actually runs

3. πŸ“¦ Download the ready-to-load .zip and install it in Chrome

Why it's different:

- 🎯 The only AI builder designed specifically for Chrome extensions β€” not a generic code gen

- βœ… Generated extensions are verified to run before you get them (no dead "receiving end does not exist" errors)

- πŸ”Œ From idea β†’ working extension in minutes, not weekends

- πŸ–€ Clean, no-code interface with live preview + code editor if you want to peek under the hood

We'd love your feedback β€” what's the first extension you'd build? πŸ‘‡

53 views

Add a comment

Replies

Best

As someone who spends too much time fighting manifest files and debugging content scripts, this feels refreshing. The verification step caught my attention how exactly do you test generated extensions before delivery?

Β Ha the manifest-and-content-script fight is exactly what we set out to kill. πŸ˜„ On verification: after generation we first compile the code (esbuild catches syntax/import errors), then boot the actual packaged extension in headless Chrome via Puppeteer. It loads the manifest, navigates each UI page, probes the background service worker for startup crashes, and captures uncaught exceptions and blank renders. Any real runtime failure is fed back into a self-healing loop that repairs it automatically before delivery so the verification is behavioral, not just "does it lint."

Really interesting launch. My biggest question is reliability AI can generate code quickly, but extensions often break because of Chrome updates. How does PlugThis maintain compatibility over time?

Β  Reliability's the right thing to press on, Kat. Two things keep it durable:

(1) we target Manifest V3 exclusively and reject deprecated MV2 outright, so builds align with where Chrome is heading, not where it was; and


(2) every extension is validated and actually run in headless Chrome before download, with strict manifest/asset checks (all declared service workers, content scripts, and pages must resolve to real files) plus a Chrome Web Store pre-flight for common rejection blockers. It won't stop Google from ever changing an API, but it removes the "generated code that never even ran" class of breakage.

The build in verification is what caught my eye. Knowing the extension actually runs before downloading it could save a lot of trial and error.

Β  Thanks Iris! That's exactly why we built it. Before you ever download, we boot the extension in a real headless Chrome, load the manifest, open each UI surface (popup, options, side panel), and watch for console errors, blank renders, and service-worker crashes. If something breaks, it goes back through an auto-repair loop before it reaches you so you're not the one discovering the broken build. πŸ™Œ

Turning a plain English idea into a working Chrome extension sounds like a fun way to help people test ideas without getting stuck in setup. πŸ‘

Β Love that framing, Freya that's the whole point. πŸ‘ Describe the idea in plain English and you skip the manifest wiring, build config, and boilerplate entirely. It's genuinely built for testing ideas fast without getting stuck in setup, and since every build is runtime-verified first, "fast" doesn't mean "flaky."

Love the idea Does PlugThis support more complex extensions with APIs, authentication, and custom workflows or mainly simple utilities right now?

Β  Great question, Ashley! It's not limited to simple utilities. PlugThis generates full extensions: React + TypeScript + Tailwind, popups/side panels/options pages, content scripts, background service workers, and a wide range of Chrome permissions (storage, tabs, scripting, cookies, identity for auth flows, alarms, contextMenus, and more). It also handles the trickier stuff like content-script ↔ service-worker messaging and isolated/MAIN-world splits for reaching page internals. It leans on least-privilege by default, so you get capability without over-permissioning.

Me thinking the plain English approach removes one of the biggest barriers for new builders. Supporting import of existing extensions for editing could make the platform useful beyond creating projects from scratch.

Me liking that the platform removes the setup work that usually stops good ideas. Will teams be able to collaborate on one extension together? Shared editing and review could make it even more useful.

Will there be an option to publish directly to the Chrome Web Store after testing?