Chrome plugin to generate good passwords
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Neale Pickett 2173b6b40d
Fill small screens
6 years ago
_locales/en Rename project, disambiguate charset 6 years ago
css Remove cruft 6 years ago
img Make icon stand out better against dark 6 years ago
js run standalone too 6 years ago
res Update README 6 years ago
LICENSE.md Mention other licenses 6 years ago
README.md Avoid hyperbole 6 years ago
manifest.json Rename project, disambiguate charset 6 years ago
popup.html Fill small screens 6 years ago

README.md

This is a simple, but cryptographically not awful, password generator.

Click on the extension icon, and it makes a password of length 12. You can dial the length up or down and tell it not to include certain character classes, and the password is updated automatically.

The extension makes sure any generated password is in your clipboard. So when you need a password, typically you can click the extension, then go back to the form and paste in your new password.

Screenshot

Hooray!

Cryptographically Not Awful

There are password generators that go to great lengths to use high-entropy seeds for their random number generators. This one uses window.crypto.getRandomValues, which is good enough for my purposes. You'll have to decide if it's good enough for yours. Feel free to read the code and decide for yourself.