A Chrome extension for providing UI feedback and generating prompts for improvements.
Available on the Chrome Web Store
- Click any element on a page to add feedback
- Comments are saved locally for each page
- Generate AI prompts from your feedback
- Copy prompts to clipboard
- Export all comments as JSON
- Visual markers show where comments exist
-
Install dependencies:
npm install
-
Build the extension:
npm run build
-
Load in Chrome:
- Open Chrome and go to
chrome://extensions/ - Enable "Developer mode"
- Click "Load unpacked"
- Select the
distfolder
- Open Chrome and go to
- Click the blue chat bubble button (💬) on any webpage to enter selection mode
- Click any element you want to comment on
- Type your feedback and click Save
- Your comments will appear as small markers next to elements
- Click a marker to view, copy prompt, or delete the comment
The extension needs proper icon files. Either:
- Convert the included
icon.svgto PNG at sizes 16x16, 48x48, and 128x128 - Create your own icons and save them as
icon16.png,icon48.png, andicon128.png
npm run dev- Start Vite in watch modenpm run build- Build for production
src/contentScript.ts- Main content script for element selection and comment UIsrc/background.ts- Background service workersrc/popup.ts- Extension popup functionalitysrc/styles.css- All overlay stylessrc/types.ts- TypeScript type definitions