An open-source password generator designed to create strong, unique passwords without storing any user data. Passwords are generated safely and never stored or transmitted.
I needed a simple password generator that:
- Runs inside my browser - not on some random website with trackers
- Stores nothing - password goes straight to clipboard, that's it
- Has zero data collection - no analytics, no telemetry, no nonsense
- Is open source - so anyone can verify what it does
Most password generators I found were either bloated, required accounts, stored data in localStorage, or ran on websites full of tracking scripts. I wanted something minimal that just works.
- Click the extension icon
- Password is generated and copied to clipboard
- Done
That's it. No accounts. No storage. No data leaves your browser.
- Zero Storage - Passwords are never saved anywhere, only copied to your clipboard
- Cryptographically Secure - Uses
crypto.getRandomValues()for true randomness - Customizable - Adjust length, special characters, numbers, uppercase
- Context Menu - Right-click on any password field to generate
- Smart Recognition - Select text like "8 characters with numbers" and generate matching password
- Works Offline - No network requests, ever
- No data collection
- No analytics
- No network requests
- No localStorage
- No cookies
- Password exists only in your clipboard
pnpm install
pnpm buildExtensions will be in build/chrome and build/firefox.
ISC